I'm new to Semantic/React/Express. How do I include the stylesheet for Semantic in React? Do I need an html file that directly links to the Semantic css/JavaScript files? Right now, I'm not using any html files.
My main page, dashboard.jsx:
var React = require('react');
var Layout = require('./layout');
class Dashboard extends React.Component {
render() {
return (
<Layout title={this.props.title}>
<h1>{this.props.title}</h1>
<div class="ui three item menu">
<a class="active item">Editorials</a>
<a class="item">Reviews</a>
<a class="item">Upcoming Events</a>
</div>
</Layout>
);
}
}
Dashboard.propTypes = {
title: React.PropTypes.string
};
module.exports = Dashboard;