mirror of
https://github.com/morten-olsen/plainidx.git
synced 2026-02-08 01:06:24 +01:00
10 lines
104 B
TypeScript
10 lines
104 B
TypeScript
const App = () => {
|
|
return (
|
|
<div>
|
|
<h1>Hello World</h1>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { App };
|