+
diff --git a/src/components/UsersTable/UsersTable.tsx b/src/components/UsersTable/UsersTable.tsx
new file mode 100644
index 0000000..7df4c36
--- /dev/null
+++ b/src/components/UsersTable/UsersTable.tsx
@@ -0,0 +1,26 @@
+import React, { FC } from "react";
+
+const UsersTable: FC = () => {
+ return (
+
+
+
+ | asdfasd |
+ asdf |
+ asdf |
+ asdf |
+
+
+
+
+ | a |
+ a |
+ a |
+ a |
+
+
+
+ );
+};
+
+export default UsersTable;
diff --git a/src/pages/LandingPage/LandingPage.test.tsx b/src/pages/LandingPage/LandingPage.test.tsx
new file mode 100644
index 0000000..ee05220
--- /dev/null
+++ b/src/pages/LandingPage/LandingPage.test.tsx
@@ -0,0 +1,13 @@
+import React from "react";
+import { screen, render } from "@testing-library/react";
+
+import LandingPage from "./LandingPage";
+
+describe("LandingPage", () => {
+ it("renders", () => {
+ render(
);
+
+ const heading = screen.getByText("Landing page");
+ expect(heading).toBeInTheDocument();
+ });
+});
diff --git a/src/pages/LandingPage/LandingPage.tsx b/src/pages/LandingPage/LandingPage.tsx
new file mode 100644
index 0000000..05adcae
--- /dev/null
+++ b/src/pages/LandingPage/LandingPage.tsx
@@ -0,0 +1,19 @@
+import React, { FC } from "react";
+
+import PageContainer from "components/PageContainer/PageContainer";
+import ContentCard from "components/ContentCard/ContentCard";
+import UsersTable from "components/UsersTable/UsersTable";
+
+const LandingPage: FC = () => {
+ return (
+
+ Landing page
+ Lorem ipsum dolor sit amet consectetur adipisicing elit.
+
+
+
+
+ );
+};
+
+export default LandingPage;
diff --git a/tsconfig.json b/tsconfig.json
index 87c7b53..380d190 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -11,6 +11,7 @@
"api/*": ["./src/api/*"],
"assets/*": ["./src/assets/*"],
"components/*": ["./src/components/*"],
+ "pages/*": ["./src/pages/*"],
"state/*": ["./src/state/*"],
"styles/*": ["./src/styles/*"],
"utilities/*": ["./src/utilities/*"]
diff --git a/webpack.config.js b/webpack.config.js
index dfe584e..55d4bf3 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -35,6 +35,7 @@ module.exports = () => ({
api: path.resolve(sourcePath, "api/"),
assets: path.resolve(sourcePath, "assets/"),
components: path.resolve(sourcePath, "components/"),
+ pages: path.resolve(sourcePath, "pages/"),
state: path.resolve(sourcePath, "state/"),
styles: path.resolve(sourcePath, "styles/"),
utilities: path.resolve(sourcePath, "utilities/"),