/* @flow */ import React, { Component } from 'react' import classnames from 'classnames' import { TabType } from '../Tab/Tab' type Props = { className?: string, children: Array, } import styles from './tabList.scss' export default class TabList extends Component { props: Props render() { const { className, children, } = this.props const css = [ className, styles[`tabList`], ] return (
{children}
) } }