Files
parcer/ui/src/App.tsx

13 lines
155 B
TypeScript
Raw Normal View History

2024-03-03 16:44:16 +05:30
function App() {
return (
<>
2024-03-05 23:02:42 +05:30
<h1 className="text-3xl font-bold underline">
Hello world!
</h1>
2024-03-03 16:44:16 +05:30
</>
)
}
export default App