Spaces:
Sleeping
Sleeping
File size: 196 Bytes
5d4f61b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import React from 'react';
import Introduction from './Introduction';
const Home = () => {
return (
<div>
<Introduction />
</div>
);
};
export default Home;
|