1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-26 19:21:30 +01:00

Reorganize folder structure

This commit is contained in:
Phuoc Nguyen
2019-11-17 10:48:47 +07:00
parent 6393b96e84
commit ea2790f07e
22 changed files with 145 additions and 149 deletions

View File

@@ -0,0 +1,20 @@
import React from 'react';
import Dot from '../../placeholders/Dot';
import Frame from '../../placeholders/Frame';
import Rectangle from '../../placeholders/Rectangle';
const Cover = () => {
return (
<Frame>
<div className="h-100 flex flex-column items-center justify-center pa2">
<div className="w-100 h2 flex flex-row items-center ba b--black-30 br2 ph1">
<div className="mr1"><Dot /></div>
<Rectangle />
</div>
</div>
</Frame>
);
};
export default Cover;