forked from Charlie85270/tail-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
26 lines (24 loc) · 941 Bytes
/
index.tsx
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
import React, { FC } from "react";
import AppLayout from "../../components/layout/AppLayout";
import Elements from "../../components/kit/components/elements";
import Forms from "../../components/kit/components/form";
import Commerce from "../../components/kit/components/commerce";
import Navigation from "../../components/kit/components/navigation";
import Pagesection from "../../components/kit/components/pagesection";
import ListPage from "../../components/kit/components/list";
const ComponentsPage: FC = () => {
return (
<AppLayout
title="Tailwind UI KIT – 200 Free and open source components for React, VueJS and Angular."
desc="Over 200 free and open source components for tailwind css, with live code edition to build beautiful UI"
>
<Elements />
<Forms />
<Commerce />
<Navigation />
<Pagesection />
<ListPage />
</AppLayout>
);
};
export default ComponentsPage;