mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
10 lines
336 B
TypeScript
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 };
|