mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
import React, { FC } from "react";
|
||
import styles from "./styles.module.scss";
|
||
|
||
interface IProps {}
|
||
|
||
const NodeDeletedBadge: FC<IProps> = () => {
|
||
return <div className={styles.badge}>Эта ячейка заблокирована. Её не никто не увидит.</div>;
|
||
};
|
||
|
||
export { NodeDeletedBadge };
|