react-tv icon indicating copy to clipboard operation
react-tv copied to clipboard

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

Open sujithklr93 opened this issue 7 years ago • 0 comments

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) `

sujithklr93 avatar Jan 15 '19 05:01 sujithklr93