mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 21:06:42 +07:00
21 lines
568 B
TypeScript
21 lines
568 B
TypeScript
import React, { FC } from 'react';
|
|
import * as styles from './styles.scss';
|
|
import { Group } from "~/components/containers/Group";
|
|
import { Filler } from "~/components/containers/Filler";
|
|
|
|
interface IProps {}
|
|
|
|
const NodePanel: FC<IProps> = () => (
|
|
<div className={styles.wrap}>
|
|
<Group horizontal className={styles.panel}>
|
|
<Filler>
|
|
<div className={styles.title}>Node title</div>
|
|
<div className={styles.name}>~author</div>
|
|
</Filler>
|
|
</Group>
|
|
|
|
<div className={styles.mark} />
|
|
</div>
|
|
);
|
|
|
|
export { NodePanel };
|