UNPKG

codenawis-theme

Version:

A frontity theme by @mymakarim @codenawis

18 lines (15 loc) 292 B
import { styled } from "frontity"; const Row = ({children}) => { return ( <RowCss> {children} </RowCss> ) } const RowCss = styled.div` display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px `; export default Row