aboutsummaryrefslogtreecommitdiffstats
path: root/src/react/TabPane.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/react/TabPane.js')
-rw-r--r--src/react/TabPane.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/react/TabPane.js b/src/react/TabPane.js
new file mode 100644
index 0000000..56a4bf0
--- /dev/null
+++ b/src/react/TabPane.js
@@ -0,0 +1,12 @@
+import React from 'react';
+
+class TabPane extends React.Component {
+ render() {
+ const {children} = this.props;
+ return (<div className='sdc-tab-content' role='tabpanel'>
+ {children}
+ </div>);
+ }
+}
+
+export default TabPane;