Files
rowy/src/components/fields/User/EditorCell.tsx
2023-01-26 12:56:49 +00:00

7 lines
212 B
TypeScript

import { IEditorCellProps } from "@src/components/fields/types";
import UserSelect from "./UserSelect";
export default function EditorCell({ ...props }: IEditorCellProps) {
return <UserSelect {...props} />;
}