T0KII's picture
added a home page and changed background color
5d4f61b
Raw
History Blame Contribute Delete
196 Bytes
import React from 'react';
import Introduction from './Introduction';
const Home = () => {
return (
<div>
<Introduction />
</div>
);
};
export default Home;