Skip to content

Commit

Permalink
fixup! Feat(web-react): Add spacing property to Tabs component #DS-1315
Browse files Browse the repository at this point in the history
  • Loading branch information
curdaj committed Aug 2, 2024
1 parent 1700e27 commit bbfdfd8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import TabList from '../TabList';
import TabPane from '../TabPane';
import Tabs from '../Tabs';

const TabsDefault = () => {
const TabsWithCustomSpacing = () => {
const [selectedId, setSelectedId] = useState<TabId>(1);

const selectTab = (id: TabId) => {
Expand Down Expand Up @@ -36,4 +36,4 @@ const TabsDefault = () => {
);
};

export default TabsDefault;
export default TabsWithCustomSpacing;

0 comments on commit bbfdfd8

Please sign in to comment.