「React入門」インラインスタイル(Inline style)を指定するサンプル
サンプルコード
<div id="example"></div>
<script type="text/babel">
var cftStyle = {
fontSize: 100,
color: '#FF0000',
lineHeight: "32px",
borderRadius: 4,
border: "none",
};
ReactDOM.render(
<h1 style = {cftStyle}>study in arkgame</h1>,
document.getElementById('example')
);
</script>