Ahmed Cool Projects 1e1cd6ebe5
fixing loading for keylovefaq component (#1692)
## Description

<!-- Insert PR description-->

## Type of change

<!--- Please check the type of change your PR introduces: --->
- [ ] 🌻 Feature
- [x] 🐛 Bugfix
- [ ] 🗺️ Documentation
- [ ] 🤖 Test
- [ ] 💻 CI/Deployment
- [ ] 🐹 Trivial/Minor

## Issue(s)

<!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. -->
* #<issue>

## Test Plan

<!-- How will this be tested prior to merging.-->
- [ ] 💪 Manual
- [ ]  Unit test
- [ ] 💚 E2E
2022-12-05 22:41:58 +00:00

24 lines
506 B
JavaScript

import React from "react";
import "animate.css";
import loadable from "@loadable/component";
import Hero from "./Hero";
import Demo from "./Demo";
import FourthSection from "./FourthSection";
import Cookies from "./Cookies";
import KeyLoveFAQ from "./KeyLoveFAQ";
const BackToTopComp = loadable(() => import("./BackToTop"));
export function MainComp() {
return (
<>
<Hero />
<Demo />
<KeyLoveFAQ />
<FourthSection />
<BackToTopComp />
<Cookies />
</>
);
}