### Examples **More examples** are available on NorthStar Storybook. ```jsx import { useState } from 'react'; import Button from 'aws-northstar/components/Button'; const ModalViewer = () => { const [visible, setVisible] = useState(false); return ( <> setVisible(false)}> Modal content goes here ); }; ```