1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
Matthias Hannig 2154630793 renamed app
2017-05-22 15:22:25 +02:00

23 lines
470 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react'
import {Link} from 'react-router'
export default class SidebarHeader extends React.Component {
render() {
return (
<div className="sidebar-header">
<div className="logo">
<Link to='/'>
<i className="fa fa-cloud"></i>
</Link>
</div>
<div className="title">
<h1>Alice</h1>
<p>Your friendly bird looking glass</p>
</div>
</div>
);
}
}