mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +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} />;
|
||
|
|
}
|