UNPKG
codenawis-theme
Version:
latest (1.1.0)
1.4.3
1.1.0
A frontity theme by @mymakarim @codenawis
frontity.org
mymakarim/frontity-codenawis
codenawis-theme
/
src
/
components
/
utitlity
/
Row.js
18 lines
(15 loc)
•
292 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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