1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 18:32:50 +00:00

working on css

This commit is contained in:
2016-08-12 20:37:47 +00:00
parent 645a46e368
commit db3e51b69a
10 changed files with 580 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
import React from 'react';
//images
import me from '../../assets/images/me.jpg';
export default class Sidebar extends React.Component{
render(){
return(
<div class="Sidebar">
<h2>About me</h2>
<p>Test 123</p>
<p>Test 123</p>
<p>Test 123</p>
<p>Test 123</p>
<p>Test 123</p>
<p>Test 123</p>
<p>Test 123</p>
</div>
);
}
}