chore: format
This commit is contained in:
parent
194ae40972
commit
b8fcda29dc
|
@ -164,7 +164,13 @@ const Traits = (props) => {
|
||||||
>
|
>
|
||||||
{tabs.map(([type]) => <Tab key={type}>{type}</Tab>)}
|
{tabs.map(([type]) => <Tab key={type}>{type}</Tab>)}
|
||||||
</TabList>
|
</TabList>
|
||||||
{tabs.map(([type, content]) => <TabPanel key={type}>{content}</TabPanel>)}
|
{tabs.map(([type, content]) => (
|
||||||
|
<TabPanel
|
||||||
|
key={type}
|
||||||
|
>
|
||||||
|
{content}
|
||||||
|
</TabPanel>
|
||||||
|
))}
|
||||||
</Tabs>
|
</Tabs>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user