martmists
09/18/2022, 4:25 PMdecky-frontend-lib) but I'm strugging a bit as there's a lot of types that don't seem to exist in Kotlin like RouteProps, Omit, etc. How would I approach this? I already went ahead and replaced all instances of JSX.Element with ReactElement<*>turansky
09/19/2022, 9:16 AMfunction Link(props: LinkProps): JSX.Element
Kotlin:
val Link: FC<LinkProps>martmists
09/19/2022, 1:25 PMturansky
09/19/2022, 2:46 PMRouteProps from react-router-dom ?martmists
09/19/2022, 2:48 PMturansky
09/19/2022, 4:18 PMPropsWithRef according new/modern namingmartmists
09/19/2022, 9:00 PMturansky
09/20/2022, 12:27 PMProps contract