chore: format

This commit is contained in:
cha0s 2020-06-19 22:19:04 -05:00
parent 194ae40972
commit b8fcda29dc

View File

@ -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>
); );