spee.ch/react/components/AboutPage/index.js

16 lines
250 B
JavaScript
Raw Normal View History

2018-01-29 20:47:12 +01:00
import React from 'react';
import NavBar from 'containers/NavBar';
class AboutPage extends React.Component {
render () {
return (
<div>
<NavBar/>
<h1>About page</h1>;
</div>
);
}
};
export default AboutPage;