namesny-com/src/components/About.js

10 lines
152 B
JavaScript
Raw Normal View History

2017-04-07 19:57:56 +00:00
import React, {Component} from 'react';
2017-04-09 19:09:27 +00:00
export const About = () => (
<div className="content">
<h1>About</h1>
</div>
);
2017-04-07 19:57:56 +00:00
2017-04-09 19:09:27 +00:00
export default About;