Files
criminalmindsapi/client/src/pages/home.js
T

11 lines
177 B
JavaScript
Raw Normal View History

2022-06-25 10:30:21 -05:00
import React from 'react';
import Greeting from '../components/greeting';
2022-06-24 23:23:06 -05:00
export default function Home() {
return (
<>
2022-06-25 10:30:21 -05:00
<Greeting/>
2022-06-24 23:23:06 -05:00
</>
);
}