UNPKG

tachyons-generator

Version:

Generate a custom Tachyons build with a json configuration

16 lines (13 loc) 300 B
const React = require('react') const e = React.createElement const { SectionCx: { wrap, h3 } } = require('../style') module.exports = ({ title, children }) => e('article', { className: 'center' }, e('h3', { className: h3 }, title), e('div', { className: wrap }, children) )