Layout scaffolding for Web apps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
385 B

  1. import * as React from 'react'
  2. import * as ReactDOM from 'react-dom';
  3. import { BasicNarrow } from '../../..';
  4. const Page = () => {
  5. return (
  6. <BasicNarrow.Layout>
  7. <BasicNarrow.ContentContainer>
  8. Hello
  9. </BasicNarrow.ContentContainer>
  10. </BasicNarrow.Layout>
  11. )
  12. }
  13. const root = document.createElement('div')
  14. ReactDOM.render(<Page />, root);
  15. document.body.appendChild(root);