separate App
This commit is contained in:
parent
8de30cba1e
commit
7bf5ff926a
8
src/App.tsx
Normal file
8
src/App.tsx
Normal 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>;
|
||||
}
|
@ -1,12 +1,6 @@
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom/client'
|
||||
|
||||
function App() {
|
||||
const [count, setCount] = React.useState(0)
|
||||
return <button onClick={() => setCount((count) => count + 1)}>
|
||||
count is {count}
|
||||
</button>;
|
||||
}
|
||||
import App from './App';
|
||||
|
||||
const root = document.getElementById('root');
|
||||
root && ReactDOM.createRoot(root).render(<React.StrictMode><App /></React.StrictMode>);
|
Loading…
Reference in New Issue
Block a user