I have the following render method and I am expecting to have two columns in my layout but am getting two rows instead:
render() {
return (
<div>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap-theme.min.css" />
<Grid>
<Row>
<Col>
My Header
</Col>
</Row>
<Row>
<Col>test</Col><Col>test</Col>
</Row>
</Grid>
</div>
);
I'd expect things to render like this:
My header
Col One Col Two
but instead things are rendered like this:
My header
Col One
Col Two
What am I missing?