App.jsx 231 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 import { useState } from 'react' import reactLogo from './assets/react.svg' import './App.css' function App() { return ( <div className='container'> <div className='body'>内容</div> </div> ) } export default App