@reactivers/show
v1.0.1
Published
Simple show component
Downloads
13
Readme
Getting Started
Installations
npm install --save @reactivers/show
yarn add @reactivers/show
Props
interface IShowProps {
showIf: boolean;
}
Example
...
const [showIf, setShowIf] = useState(false);
...
<Show showIf={showIf}>
...
</Show>