gompass/app/pages/home.jsx

9 lines
110 B
JavaScript

import React from 'react';
export default function Home() {
return (
<>
<h1>Home</h1>
</>
);
}