Skip to content

Instantly share code, notes, and snippets.

@fernandodof
Last active October 9, 2021 14:31
Show Gist options
  • Save fernandodof/b2cd60573ad16d3bf47d3c47ca9ad513 to your computer and use it in GitHub Desktop.
Save fernandodof/b2cd60573ad16d3bf47d3c47ca9ad513 to your computer and use it in GitHub Desktop.
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