import { objectOmit } from '@dzeio/object-util' import React from 'react' import { buildClassName } from '../Util' import css from './Col.module.styl' interface Props extends React.HTMLAttributes { size?: 0|1|2|3|4|5|6|7|8|9|10|11|12 offset?: 1|2|3|4|5|6|7|8|9|10|11 children?: React.ReactNode className?: string nogrow?: boolean // Tablet related tabletSize?: 0|1|2|3|4|5|6|7|8 tabletoffset?: 1|2|3|4|5|6|7 tabletGrow?: boolean // Mobile related mobileSize?: 0|1|2|3|4 mobileoffset?: 1|2|3 mobileGrow?: boolean } export default class Col extends React.Component { public render = () => (
{this.props.children}
) }