App.jsx 198 B

12345678910111213
  1. import styles from './App.module.css';
  2. function App() {
  3. return (
  4. <div class={styles.App}>
  5. <header class={styles.header}>
  6. </header>
  7. </div>
  8. );
  9. }
  10. export default App;