13 lines
430 B
React
13 lines
430 B
React
|
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>
|
||
|
);
|
||
|
}
|