UNPKG

348 BJSXView Raw
1const React = require('react');
2const {Modal} = require('../src');
3
4class StaticModalPage extends React.Component {
5 render() {
6 return (<Modal>
7 <h1>This is a modal</h1>
8 <p>It has things but isn't tied to any sort of user action, rather it's
9 sitting on a route.</p>
10 </Modal>);
11 }
12}
13
14module.exports = {StaticModalPage};