import React from
'react'
;
import
'onsenui/css/onsen-css-components.css'
;
import { Row } from
'react-onsenui'
;
export
default
function
App() {
return
(
<div style={{
display:
'block'
, width: 500, paddingLeft: 30
}}>
<h6>ReactJS Onsen-UI Row Component</h6>
<Row style={{ backgroundColor:
'lightblue'
}}>
Row One Content is here!</Row> <br></br>
<Row style={{ backgroundColor:
'green'
}}>
Row Two Content is here!</Row> <br></br>
<Row style={{ backgroundColor:
'lightblue'
}}>
Row Three Content is here!</Row> <br></br>
<Row style={{ backgroundColor:
'green'
}}>
Row Four Content is here!</Row> <br></br>
<Row style={{ backgroundColor:
'lightblue'
}}>
Row Five Content is here!</Row> <br></br>
</div>
);
}