/** * A collection of popular layouts and patterns made with CSS (https://csslayout.io) * (c) 2019 - 2021 Nguyen Huu Phuoc */ import * as React from 'react'; import Frame from '../../placeholders/Frame'; import Line from '../../placeholders/Line'; import Rectangle from '../../placeholders/Rectangle'; const Cover: React.FC<{}> = () => { return (
{ Array(3).fill(0).map((_, index) => { return ( ); }) } { Array(2).fill(0).map((_, row) => { return ( { Array(3).fill(0).map((__, col) => { return ( ); }) } ); }) }
{index === 0 ? : }
{col === 0 ? : }
); }; export default Cover;