Files
rowy/src/components/fields/User/EditorCell.tsx

7 lines
212 B
TypeScript
Raw Normal View History

2023-01-26 12:56:49 +00:00
import { IEditorCellProps } from "@src/components/fields/types";
import UserSelect from "./UserSelect";
export default function EditorCell({ ...props }: IEditorCellProps) {
return <UserSelect {...props} />;
}