generated from muhtadeetaron/nextjs-template
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
import React from "react";
|
|
|
|
const Sidebar = () => {
|
|
return (
|
|
<div className="w-1/4">
|
|
<h1 className="text-2xl">Today's Paper</h1>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Sidebar;
|