added sidebar icon

This commit is contained in:
Yusuf Ipek
2021-05-14 12:52:33 +03:00
parent b2be16bed6
commit e628868b40
3 changed files with 23 additions and 1 deletions
+7 -1
View File
@@ -1,3 +1,9 @@
export default function Sidebar() {
return <div className="sidebar">Sidebar</div>;
return (
<div className="sidebar">
<button className="nav-btn">
<i class="fa fa-bars" />
</button>
</div>
);
}