UNPKG

react-jsx-parser

Version:

A React component which can parse JSX and output rendered React Components

8 lines (7 loc) 207 B
/** * Converts a string from other cases to camelCase * @param string the value to camelCase * @example * camelCase('foo-bar') // 'fooBar' */ export declare const camelCase: (string: string) => string;