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

fixed typos

This commit is contained in:
muerwre 2019-08-02 18:43:24 +07:00
parent 6066c91060
commit 840af25df4
17 changed files with 438 additions and 125 deletions

View file

@ -1,38 +1,45 @@
import * as React from 'react';
import { Cell } from "~/components/flow/Cell";
import { Cell } from '~/components/flow/Cell';
import { range } from 'ramda';
import * as styles from './styles.scss';
export const TestGrid = () => (
<div className={styles.grid_test}>
<div style={{
gridRow: '1 / 2',
gridColumn: '1 / -1',
background: 'green',
}}
<div>
<div
style={{
// gridRow: "1 / 2",
// gridColumn: "1 / -1",
background: '#222222',
borderRadius: 6,
height: 300,
marginBottom: 4,
display: 'flex',
}}
>
HERO
</div>
<div style={{
gridRow: '2 / 4',
gridColumn: '-2 / -1',
background: 'blue',
}}
>
STAMP
</div>
<div className={styles.grid_test}>
<div
style={{
gridRow: '2 / 4',
gridColumn: '-2 / -1',
background: '#090909',
borderRadius: 4,
}}
>
STAMP
</div>
{
range(1,20).map(el => (
{range(1, 20).map(el => (
<Cell
width={Math.floor(Math.random() * 3)}
height={Math.floor(Math.random() * 3)}
title={`Cell ${el}`}
key={el}
/>
))
}
))}
</div>
</div>
);