fix: use forwardRef for Story

This commit is contained in:
p-sw 2024-06-01 07:48:57 +09:00
parent 38975b7d15
commit 70f8f43209

View File

@ -6,23 +6,25 @@ const layoutClasses = {
centered: "flex items-center justify-center",
};
export function Story({
layout = "default",
children,
className,
}: {
const Story = React.forwardRef<
HTMLDivElement,
{
layout?: keyof typeof layoutClasses;
children: React.ReactNode;
className?: string;
}) {
}
>(({ layout = "default", children, className }, ref) => {
return (
<div
className={twMerge(
`bg-white dark:bg-black border border-neutral-300 dark:border-neutral-700 rounded-lg w-full p-4 min-h-48 h-auto mt-8 ${layoutClasses[layout]}`,
className
)}
ref={ref}
>
{children}
</div>
);
}
});
export { Story };