File size: 265 Bytes
1b2bfb1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { CardWithForm } from './card';
import { HomeHeader } from './header';

const Home = () => {
  return (
    <div>
      <HomeHeader></HomeHeader>
      <section>
        <CardWithForm></CardWithForm>
      </section>
    </div>
  );
};

export default Home;