9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
"use client";
|
|
|
|
import SquareSyncWidget from "@/components/admin/SquareSyncWidget";
|
|
|
|
type Props = { brandId: string };
|
|
|
|
export default function SquareSyncWidgetWrapper({ brandId }: Props) {
|
|
return <SquareSyncWidget brandId={brandId} />;
|
|
} |