import Radio from '../../radio'; import React from 'react'; import ReactDOM from 'react-dom'; import Tab from '..'; function onChange(key) { console.log(key); } const Demo = () => { const [ shape, setShape ] = React.useState('pure'); return (
shape:{' '} setShape(val)}> pure wrapped text

This is home page This is document page This is api page This is repo link
); }; ReactDOM.render(, document.getElementById('tab-demo-2'));