mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-01-24 21:09:54 -05:00
15 lines
293 B
JavaScript
15 lines
293 B
JavaScript
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'));
|