hello
[React] Hello React 띄우기
App.jsx 전 코드 import { useState } from 'react' import reactLogo from './assets/react.svg' import viteLogo from '/vite.svg' import './App.css' function App() { const [count, setCount] = useState(0) return ( Vite + React setCount((count) => count + 1)}> count is {count} Edit src/App.jsx and save to test HMR Click on the Vite and React logos to learn more ) } export default App 아래와 같이 변경 import * as..