You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
292 B
11 lines
292 B
import type React from "react";
|
|
|
|
export interface PositionWidgetProps {}
|
|
|
|
export const PositionWidget = ({}: PositionWidgetProps): JSX.Element => {
|
|
return (
|
|
<div className="mb-4 flex flex-col space-y-3 rounded-2xl bg-[#f9e3aa] p-6 text-sm text-black">
|
|
position
|
|
</div>
|
|
);
|
|
};
|
|
|