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:
parent
746d10ce8b
commit
6f76bec2c0
5 changed files with 65 additions and 8 deletions
|
@ -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 => (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue