types.moonbase: separate CustomComponent props into its own type
Cynthia Foxwell 1 month ago 1 files (+4, -2)
Changed files
@@ -1,7 +1,9 @@-export type CustomComponent = React.FC<{+export type CustomComponentProps = {value: any;setValue: (value: any) => void;-}>;+};++export type CustomComponent = React.FC<CustomComponentProps>;export type Moonbase = {/**