drawDB/src/App.js
2023-09-19 15:46:40 +03:00

12 lines
156 B
JavaScript

import './App.css';
function App() {
return (
<h1 className="text-3xl font-bold underline">
Hello world!
</h1>
);
}
export default App;