diff --git a/src/App.tsx b/src/App.tsx index 31a1d62..ea39a76 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,7 +2,9 @@ import React from 'react' export default function App() { const [count, setCount] = React.useState(0) - return ; + return ( + + ) } diff --git a/src/main.tsx b/src/main.tsx index 1afc83d..42746ef 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -1,6 +1,11 @@ import React from 'react' import ReactDOM from 'react-dom/client' -import App from './App'; +import App from './App' -const root = document.getElementById('root'); -root && ReactDOM.createRoot(root).render(); \ No newline at end of file +const root = document.getElementById('root') +root && + ReactDOM.createRoot(root).render( + + + , + )