raphamorim / react-tv

[ Unmaintained due to raphamorim/react-ape ] React Renderer for low memory applications
https://www.npmjs.com/package/react-tv
MIT License
2.01k stars 148 forks source link

React-tv app not rendering in actual LG device with focusable hoc. but it's working fine in lg TV emulator #145

Open sujithklr93 opened 5 years ago

sujithklr93 commented 5 years ago

Please find components created by using focusable element

`const ButtonContainer = (props) => { var children = props.children; return ( <button {...props}> {children} ) }

const DivContainer= (props) => { var children = props.children; return ( <div {...props}> {children}

) }

export const ButtonFocus = withFocusable(ButtonContainer) export const DivFocus = withFocusable(DivContainer) `