UNPKG

@atooni/gatsby-theme-ziodoc

Version:

A Gatsby theme for ZIO micro sites

13 lines (10 loc) 266 B
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