sample about page

This commit is contained in:
Elisha Nuchi
2019-07-15 00:35:15 -04:00
parent 54e527f634
commit bf078de592
9 changed files with 45 additions and 825 deletions
+8
View File
@@ -0,0 +1,8 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { AboutPage } from './components/about-sidebar';
ReactDOM.render(
<AboutPage />,
document.getElementById('index')
);
+7
View File
@@ -0,0 +1,7 @@
import React from 'react';
export const AboutPage = () => (
<div>
By Elisha Nuchi ©2019
</div>
);