diff --git a/src/App.jsx b/src/App.jsx
index c516cb81a..c15009adc 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -1,7 +1,8 @@
-import React from 'react';
+import React, { useState } from 'react';
import 'bulma/css/bulma.css';
import '@fortawesome/fontawesome-free/css/all.css';
import './App.scss';
+import { Tabs } from './components/Tabs/Tabs';
export const tabs = [
{ id: 'tab-1', title: 'Tab 1', content: 'Some text 1' },
@@ -9,36 +10,20 @@ export const tabs = [
{ id: 'tab-3', title: 'Tab 3', content: 'Some text 3' },
];
-export const App = () => (
-
-
Selected tab is Tab 1
+export const App = () => {
+ const [activeTabId, setActiveTabId] = useState(tabs[0].id);
-
-
-
- -
-
- Tab 1
-
-
+ const activeTab = tabs.find(el => el.id === activeTabId);
- -
-
- Tab 2
-
-
+ return (
+
+
Selected tab is {activeTab.title}
-
-
-
- Tab 3
-
-
-
-
-
-
- Some text 1
-
+
-
-);
+ );
+};
diff --git a/src/components/Tabs/Tabs.jsx b/src/components/Tabs/Tabs.jsx
index 4b321a091..24e078aba 100644
--- a/src/components/Tabs/Tabs.jsx
+++ b/src/components/Tabs/Tabs.jsx
@@ -1 +1,42 @@
-export const Tabs = () => {};
+export const Tabs = ({ tabs, activeTabId, onTabSelected }) => {
+ const selectedTab = id => {
+ if (id !== activeTabId) {
+ onTabSelected(id);
+ }
+ };
+
+ const active =
+ tabs.find(el => el.id === activeTabId) === undefined
+ ? tabs[0].id
+ : activeTabId;
+
+ const { content } = tabs.find(el => el.id === active);
+
+ return (
+
+ );
+};