UNPKG
@atooni/gatsby-theme-ziodoc
Version:
latest (0.0.9)
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A Gatsby theme for ZIO micro sites
github.com/zio/gatsby-theme-zio
zio/gatsby-theme-zio
@atooni/gatsby-theme-ziodoc
/
src
/
components
/
idx
/
social.js
13 lines
(10 loc)
•
266 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
*
as
React
from
"react"
;
const
Social
= (
{title, children}
) => {
return
(
<
div
className
=
"flex-initial flex flex-col m-4"
>
<
h1
className
=
"text-center text-lg font-bold w-full"
>
{title}
</
h1
>
{children}
</
div
>
) }
export
default
Social