UnlyEd/next-right-now-admin

View on GitHub
src/types/admin/TextFieldProps.ts

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { FieldProps } from './FieldProps';

/**
 * TODO All "any" types are unknown
 *
 * See https://marmelab.com/react-admin/List.html
 */
export type TextFieldProps = {
  sortable: boolean; // Default: true
} & FieldProps;