mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
23 lines
470 B
JavaScript
23 lines
470 B
JavaScript
|
||
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>
|
||
);
|
||
}
|
||
}
|
||
|