drawDB/src/App.js

12 lines
156 B
JavaScript
Raw Normal View History

2023-09-19 20:46:33 +08:00
import './App.css';
function App() {
return (
2023-09-19 20:46:40 +08:00
<h1 className="text-3xl font-bold underline">
Hello world!
</h1>
2023-09-19 20:46:33 +08:00
);
}
export default App;