drawDB/src/components/sidebar.jsx

13 lines
430 B
React
Raw Normal View History

2023-09-19 20:46:48 +08:00
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>
);
}