tabs icon indicating copy to clipboard operation
tabs copied to clipboard

Add IE11 support

Open alverdal opened this issue 5 years ago • 0 comments

The Tabs component is using the "method definition shorthand syntax" which isn't supported by IE11, see property "children" .

export const Tabs = ({ state: outerState, children }) => { const innerState = useState(0) const elements = useConstant(() => ({ tabs: 0, panels: 0 })) const state = outerState || innerState

Would it be possible to add IE11 support via browserlist?

alverdal avatar Feb 22 '20 23:02 alverdal