From c3979c032ee6a3b3569117e60946830c3596e879 Mon Sep 17 00:00:00 2001 From: Nikolai Date: Tue, 20 Sep 2022 13:07:27 +0300 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D1=82=D0=B0=D1=80=D0=B8=D1=84=D0=B0=D0=BC?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Components/Content/index.tsx | 4 +- src/Components/Tariffs/Contractor/index.tsx | 106 ++++++++++++++++++++ src/Components/Tariffs/Quiz/index.tsx | 78 ++++++++++++++ src/Components/Tariffs/Templater/index.tsx | 92 +++++++++++++++++ src/Components/Tariffs/index.tsx | 28 ++++++ src/index.tsx | 1 + 6 files changed, 307 insertions(+), 2 deletions(-) create mode 100644 src/Components/Tariffs/Contractor/index.tsx create mode 100644 src/Components/Tariffs/Quiz/index.tsx create mode 100644 src/Components/Tariffs/Templater/index.tsx create mode 100644 src/Components/Tariffs/index.tsx diff --git a/src/Components/Content/index.tsx b/src/Components/Content/index.tsx index d7920a9..98e1f6e 100644 --- a/src/Components/Content/index.tsx +++ b/src/Components/Content/index.tsx @@ -1,6 +1,6 @@ import * as React from "react"; import { Box } from "@mui/material"; -import Users from "../Users"; +import Tariffs from "../Tariffs/"; const Content: React.FC = () => { @@ -16,7 +16,7 @@ const Content: React.FC = () => { overflowY: "auto", padding: "60px" }}> - + ); diff --git a/src/Components/Tariffs/Contractor/index.tsx b/src/Components/Tariffs/Contractor/index.tsx new file mode 100644 index 0000000..f9c11f6 --- /dev/null +++ b/src/Components/Tariffs/Contractor/index.tsx @@ -0,0 +1,106 @@ +import * as React from "react"; +import { Box, Typography, Button } from "@mui/material"; +import theme from "../../../theme"; + + +const Contractor: React.FC = () => { + return ( + + + Сокращатель ссылок + + + + + + + + + + + ); +} + + +export default Contractor; \ No newline at end of file diff --git a/src/Components/Tariffs/Quiz/index.tsx b/src/Components/Tariffs/Quiz/index.tsx new file mode 100644 index 0000000..268b688 --- /dev/null +++ b/src/Components/Tariffs/Quiz/index.tsx @@ -0,0 +1,78 @@ +import * as React from "react"; +import { Box, Typography, Button } from "@mui/material"; +import theme from "../../../theme"; + + +const Quiz: React.FC = () => { + return ( + + + Опросник + + + + + + + + + ); +} + + +export default Quiz; \ No newline at end of file diff --git a/src/Components/Tariffs/Templater/index.tsx b/src/Components/Tariffs/Templater/index.tsx new file mode 100644 index 0000000..0a1a63f --- /dev/null +++ b/src/Components/Tariffs/Templater/index.tsx @@ -0,0 +1,92 @@ +import * as React from "react"; +import { Box, Typography, Button } from "@mui/material"; +import theme from "../../../theme"; + + +const Templater: React.FC = () => { + return ( + + + Шаблонизатор документов + + + + + + + + + + ); +} + + +export default Templater; \ No newline at end of file diff --git a/src/Components/Tariffs/index.tsx b/src/Components/Tariffs/index.tsx new file mode 100644 index 0000000..cc9540b --- /dev/null +++ b/src/Components/Tariffs/index.tsx @@ -0,0 +1,28 @@ +import * as React from "react"; +import { Box } from "@mui/material"; +import Templater from "./Templater"; +import Quiz from "./Quiz"; +import Contractor from "./Contractor"; +import theme from "../../theme"; + + +const Tariffs: React.FC = () => { + return ( + + + + + + + + ); +} + + +export default Tariffs; \ No newline at end of file diff --git a/src/index.tsx b/src/index.tsx index 027873b..daa1079 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -16,6 +16,7 @@ root.render( } /> } /> } /> + } /> } />