1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

grid recent card initial

This commit is contained in:
Fedor Katurov 2019-10-28 18:41:59 +07:00
parent 746d10ce8b
commit 6f76bec2c0
5 changed files with 65 additions and 8 deletions

View file

@ -16,14 +16,21 @@ type IProps = Partial<IFlowState> & {
onChangeCellView: typeof flowSetCellView;
};
export const FlowGrid: FC<IProps> = ({ user, nodes, heroes, recent, onSelect, onChangeCellView }) => (
export const FlowGrid: FC<IProps> = ({
user,
nodes,
heroes,
recent,
onSelect,
onChangeCellView,
}) => (
<div>
<div className={styles.grid_test}>
<div className={styles.hero}>
<FlowHero heroes={heroes} />
</div>
<div className={styles.stamp}>
<FlowRecent />
<FlowRecent recent={recent} />
</div>
{nodes.map(node => (