Last active
October 9, 2021 14:31
-
-
Save fernandodof/b2cd60573ad16d3bf47d3c47ca9ad513 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { ReactElement } from 'react'; | |
type Props = { | |
title: string; | |
children: ReactElement | ReactElement[]; | |
}; | |
const TabPane = ({ children }: Props): JSX.Element => <div>{children}</div>; | |
export default TabPane; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment