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

fixed routing

This commit is contained in:
2016-09-02 20:38:01 +00:00
parent 6bf367f9be
commit be5e95b6cf
6 changed files with 72 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react';
//loading icon
import loading from '../../../assets/images/loading.svg';
export default class Loading extends React.Component{
render(){
return(
<div class="Loading">
<img src={loading} alt="loading..."/>
</div>
);
}
}