separate App

This commit is contained in:
Seth Trowbridge 2024-09-30 10:41:31 -04:00
parent 8de30cba1e
commit 7bf5ff926a
2 changed files with 9 additions and 7 deletions

8
src/App.tsx Normal file
View File

@ -0,0 +1,8 @@
import React from 'react'
export default function App() {
const [count, setCount] = React.useState(0)
return <button onClick={() => setCount((count) => count + 1)}>
count is {count}
</button>;
}

View File

@ -1,12 +1,6 @@
import React from 'react' import React from 'react'
import ReactDOM from 'react-dom/client' import ReactDOM from 'react-dom/client'
import App from './App';
function App() {
const [count, setCount] = React.useState(0)
return <button onClick={() => setCount((count) => count + 1)}>
count is {count}
</button>;
}
const root = document.getElementById('root'); const root = document.getElementById('root');
root && ReactDOM.createRoot(root).render(<React.StrictMode><App /></React.StrictMode>); root && ReactDOM.createRoot(root).render(<React.StrictMode><App /></React.StrictMode>);