20 lines
428 B
TypeScript
20 lines
428 B
TypeScript
import Main from './main/main';
|
|
import Offer from './offer/offer';
|
|
import Result from './result/result';
|
|
// import License from './license/license';
|
|
// import Contacts from './contacts/contacts';
|
|
// import Footer from './footer/footer';
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<Main />
|
|
<Offer />
|
|
<Result />
|
|
{/*<License />*/}
|
|
{/*<Contacts />*/}
|
|
{/*<Footer />*/}
|
|
</>
|
|
);
|
|
}
|