(
reactOptions = {},
)
| 166 | | 'forwardRef'; |
| 167 | |
| 168 | export const componentToPreact: TranspilerGenerator<Partial<ToReactOptions>> = ( |
| 169 | reactOptions = {}, |
| 170 | ) => |
| 171 | componentToReact({ |
| 172 | ...reactOptions, |
| 173 | preact: true, |
| 174 | }); |
| 175 | |
| 176 | export const componentToReact: TranspilerGenerator<Partial<ToReactOptions>> = |
| 177 | (reactOptions = {}) => |
no test coverage detected