import React, { Component } from 'react'; import ReactDOM from 'react-dom'; import { Card, Button } from 'react-bootstrap'; export default class SettingsModalCard extends Component { constructor(props) { super(props) this.state = { title: this.props.title, description: this.props.description, toggleShow: this.props.toggleShow, } } render() { var title = this.state.title; var description = this.state.description; var toggleShow = this.state.toggleShow; return (

{title}

{description}

); } } if (document.getElementById('SettingModalCard')) { ReactDOM.render(, document.getElementById('SettingModalCard')); }