mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-28 16:06:41 +01:00
7 lines
212 B
TypeScript
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} />;
|
|
}
|