forked from figma/sds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
27 lines (25 loc) · 719 Bytes
/
App.tsx
File metadata and controls
27 lines (25 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { Footer, Header } from "compositions";
import { AllProviders } from "data";
import { Demo } from "./examples/Demo";
import { FAQs } from "./examples/FAQs";
import { PanelSections } from "./examples/PanelSections";
import { PricingGrid } from "./examples/PricingGrid";
import { ProductDetails } from "./examples/ProductDetails";
import { ProductGrid } from "./examples/ProductGrid";
import { WelcomeHero } from "./examples/WelcomeHero";
function App() {
return (
<AllProviders>
<Header />
<Demo />
<WelcomeHero />
<PanelSections />
<PricingGrid />
<FAQs />
<ProductDetails />
<ProductGrid />
<Footer />
</AllProviders>
);
}
export default App;