Skip to content

Instantly share code, notes, and snippets.

@fernandodof
Created October 9, 2021 14:32
Show Gist options
  • Save fernandodof/dc5479047f7bba9685487c7866b50523 to your computer and use it in GitHub Desktop.
Save fernandodof/dc5479047f7bba9685487c7866b50523 to your computer and use it in GitHub Desktop.
Tab pane
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