9 lines
144 B
React
9 lines
144 B
React
|
|
import { Link } from 'react-router-dom';
|
||
|
|
import '../styles/home.css';
|
||
|
|
|
||
|
|
export default function Home() {
|
||
|
|
return (
|
||
|
|
<main>
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|