diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-06-22 00:37:03 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-06-22 00:37:03 +0200 |
| commit | 2fb44e9ef9feef5179487d56a8a97699fa4b739e (patch) | |
| tree | f2f8e2d1bd2c9ccf6bc83229cdf55b3d26701774 /client/components/Header.jsx | |
| parent | c46bc4988b477c20797408fcbd9269198de0d2c3 (diff) | |
mobile css and slight refactor
Diffstat (limited to 'client/components/Header.jsx')
| -rw-r--r-- | client/components/Header.jsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/client/components/Header.jsx b/client/components/Header.jsx new file mode 100644 index 0000000..0bf3681 --- /dev/null +++ b/client/components/Header.jsx @@ -0,0 +1,17 @@ +import { h, Component } from 'preact' +import { Link } from 'react-router-dom' + +export default class Header extends Component { + render() { + return ( + <div class='header'> + <Link to='/' class='back'> + < + </Link> + <div class='inner'> + Procedural Paintings by Pepper + </div> + </div> + ) + } +} |
