16 lines
250 B
JavaScript
16 lines
250 B
JavaScript
|
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;
|