balibabu
feat: Add custom background color #3221 (#3336)
1b2bfb1
raw
history blame
265 Bytes
import { CardWithForm } from './card';
import { HomeHeader } from './header';
const Home = () => {
return (
<div>
<HomeHeader></HomeHeader>
<section>
<CardWithForm></CardWithForm>
</section>
</div>
);
};
export default Home;