mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
13 lines
339 B
TypeScript
13 lines
339 B
TypeScript
import React, { FC } from "react";
|
||
import { Button } from "~/components/input/Button";
|
||
import styles from "./styles.module.scss";
|
||
|
||
interface IProps {}
|
||
|
||
const LoginSocialRegisterButtons: FC<IProps> = () => (
|
||
<div className={styles.wrap}>
|
||
<Button>Впустите меня!</Button>
|
||
</div>
|
||
);
|
||
|
||
export { LoginSocialRegisterButtons };
|