import React from 'react';
import Greeting from '../components/greeting';
export default function Home() {
return (
<>
<Greeting/>
</>
);
}