feat: confirm access page and persist redux store
This commit is contained in:
22
components/ConfirmAccessForm/ConfirmAccessForm.tsx
Normal file
22
components/ConfirmAccessForm/ConfirmAccessForm.tsx
Normal file
@ -0,0 +1,22 @@
|
||||
import { FC } from "react";
|
||||
import { Stack, Text } from "@mantine/core";
|
||||
import ConfirmAccessButton from "@/components/ConfirmAccessForm/ConfirmAccessButton";
|
||||
import styles from "./ConfirmAccessForm.module.css";
|
||||
|
||||
const ConfirmAccessForm: FC = () => {
|
||||
return (
|
||||
<Stack
|
||||
align={"center"}
|
||||
className={styles.container}>
|
||||
<ConfirmAccessButton />
|
||||
<Text
|
||||
className={styles["gray-text"]}
|
||||
ta="center">
|
||||
Данные из LogiDex ID передаются в другой сервис и обрабатываются
|
||||
в соответствии с правилами этого сервиса
|
||||
</Text>
|
||||
</Stack>
|
||||
);
|
||||
};
|
||||
|
||||
export default ConfirmAccessForm;
|
||||
Reference in New Issue
Block a user