2023-09-19 20:46:48 +08:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
export default function Sidebar() {
|
|
|
|
return (
|
2023-09-19 20:50:24 +08:00
|
|
|
<div className="px-3 right-0 bg-white h-full">
|
2023-09-19 20:46:48 +08:00
|
|
|
<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>
|
|
|
|
);
|
|
|
|
}
|