sample about page
This commit is contained in:
@@ -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')
|
||||
);
|
||||
@@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
export const AboutPage = () => (
|
||||
<div>
|
||||
By Elisha Nuchi ©2019
|
||||
</div>
|
||||
);
|
||||
Reference in New Issue
Block a user