1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/components/lab/LabBanner/index.tsx
2022-01-02 20:59:52 +07:00

25 lines
745 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React, { FC } from 'react';
import styles from './styles.module.scss';
import { Group } from '~/components/containers/Group';
import { Square } from '~/components/containers/Square';
interface IProps {}
const LabBanner: FC<IProps> = () => (
<Square className={styles.wrap}>
<Group>
<div className={styles.title}>Лаборатория!</div>
<Group className={styles.content}>
<p>
<strong>
Всё, что происходит здесь &mdash; всего лишь эксперимент, о котором не узнает никто за
пределами Убежища.
</strong>
</p>
</Group>
</Group>
</Square>
);
export { LabBanner };