Layout scaffolding for Web apps.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

20 righe
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);