mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-01-09 05:52:02 -05:00
16 lines
293 B
React
16 lines
293 B
React
|
var React = require('react');
|
||
|
|
||
|
require('./about.scss');
|
||
|
|
||
|
var View = React.createClass({
|
||
|
render: function () {
|
||
|
return (
|
||
|
<div>
|
||
|
<h1>I am the about page!</h1>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
React.render(<View />, document.getElementById('view'));
|