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/editors/EditorFiller/index.tsx
2022-01-07 18:32:22 +07:00

10 lines
336 B
TypeScript

import React, { FC } from "react";
import { Filler } from "~/components/containers/Filler";
import { IEditorComponentProps } from "~/types/node";
import styles from "./styles.module.scss";
type IProps = IEditorComponentProps & {};
const EditorFiller: FC<IProps> = () => <Filler className={styles.filler} />;
export { EditorFiller };