import * as React from 'react'; import * as ReactDOM from 'react-dom'; import { Row, Col } from '../index'; export interface GridTestProps { } class GridTestClass extends React.Component { constructor(props: GridTestProps) { super(props); } render() { return (
1 of 3 2 of 3 3 of 3 1 of 3 2 of 3 (wider) 3 of 3 1 of 3 Variable width content 3 of 3 First, but unordered Second, but last Third, but first
); } } export const GridTest = (props: GridTestProps, container: HTMLElement) => { ReactDOM.render(React.createElement(GridTestClass, props), container, () => {}); };