gompass/app/pages/home.jsx

9 lines
110 B
React
Raw Normal View History

2023-02-08 14:31:03 +01:00
import React from 'react';
export default function Home() {
return (
<>
<h1>Home</h1>
</>
);
}