MCPcopy Create free account
hub / github.com/reactstrap/reactstrap / constructor

Method constructor

types/reactstrap-tests.tsx:2821–2830  ·  view source on GitHub ↗
(props: any)

Source from the content-addressed store, hash-verified

2819
2820class ModalExampleDestructuring extends React.Component<any, any> {
2821 constructor(props: any) {
2822 super(props);
2823 this.state = {
2824 modal: false,
2825 unmountOnClose: true,
2826 };
2827
2828 this.toggle = this.toggle.bind(this);
2829 this.changeUnmountOnClose = this.changeUnmountOnClose.bind(this);
2830 }
2831
2832 toggle() {
2833 this.setState((prevState: any) => ({

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected