react#Attributes TypeScript Examples

The following examples show how to use react#Attributes. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: react-utils.ts    From utopia with MIT License 6 votes vote down vote up
// Custom components
  static create<P>(
    type: FC<React.PropsWithChildren<P>>,
    props?: { key: Key } & Attributes & P,
    ...children: ReactNode[]
  ): FunctionComponentElement<P>
Example #2
Source File: react-utils.ts    From utopia with MIT License 6 votes vote down vote up
static create<P>(
    type: ComponentClass<P>,
    props?: { key: Key } & Attributes & P,
    ...children: ReactNode[]
  ): ReactElement<P>