aboutsummaryrefslogtreecommitdiffstats
path: root/src/react/TabPane.js
blob: 56a4bf0e043f4cba75ae1c1e3076d60fe008a7b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;