Skip to content

Commit

Permalink
falcon-ui: Added initial Tabs refactored to react
Browse files Browse the repository at this point in the history
Defined component skeleton and Props type
  • Loading branch information
jooohhn committed Aug 13, 2018
1 parent 9154d22 commit a697452
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions packages/falcon-ui/src/components/Tabs/Tabs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//@flow
import * as React from 'react'

type Props = {
children: React.ReactNode,
className: string,
defaultFocus: boolean,
defaultIndex: number,
disabledTabClassName: string,
onSelect: (index: number, lastIndex: number, event: Event) => ?boolean,
selectedIndex: number,
selectedTabClassName: string,
selectedTabPanelClassName: PropTypes.string,
};

export default class Tabs extends Component<Props> {
render() {
return (
<div />
);
}
}

0 comments on commit a697452

Please sign in to comment.