We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not a bug.
I can't find example on generate new tab on your page.
Mine is working but it doesn't generate new tab after you click on the row.
Example:
first component:
<tr {...row.getRowProps()} onClick={ (e) => Test(row.values)} />
second component:
function Test(data) { return ( <> {Object.keys(data).map(key => <Tab key={key}>{key}</Tab> )} </> ) }
Third component:
const TabTable = () => { return ( <div> <Tabs> <TabList> <Tab key="Main">Main</Tab> <Test /> </TabList> <TabPanel> <LoadData /> </TabPanel> </Tabs> </div> ); }
LoadData is a table.
Yes, I use import Test in TabTable, it's just snippets.
That would be great for people who are new at generating tabs.
The text was updated successfully, but these errors were encountered:
On side note:
I did not use Props or State. Using export.
Is that probably why it's not being dynamically without Props or State?
Sorry, something went wrong.
No branches or pull requests
Not a bug.
I can't find example on generate new tab on your page.
Mine is working but it doesn't generate new tab after you click on the row.
Example:
first component:
second component:
Third component:
LoadData is a table.
Yes, I use import Test in TabTable, it's just snippets.
That would be great for people who are new at generating tabs.
The text was updated successfully, but these errors were encountered: