mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-25 11:09:11 +00:00
13 lines
430 B
JavaScript
13 lines
430 B
JavaScript
import React from "react";
|
|
|
|
export default function Sidebar() {
|
|
return (
|
|
<div className="px-3 fixed right-0 bg-white h-full">
|
|
<div className="w-12 h-12 bg-blue-200 rounded-full mb-4"></div>
|
|
<div className="w-12 h-12 bg-blue-200 rounded-full mb-4"></div>
|
|
<div className="w-12 h-12 bg-blue-200 rounded-full mb-4"></div>
|
|
<div className="w-12 h-12 bg-blue-200 rounded-full mb-4"></div>
|
|
</div>
|
|
);
|
|
}
|