Skip to content

Commit

Permalink
fix(TabsPane): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cncolder committed Mar 31, 2020
1 parent 46dbf06 commit 22aa3be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TabsPane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import { AtTabsPaneProps } from 'taro-ui/types/tabs-pane'

import '../style/TabsPane.scss'

export interface TabsPanelProps extends AtTabsPaneProps {
export interface TabsPaneProps extends AtTabsPaneProps {
style?: React.CSSProperties
}

export const TabsPane: React.FC<TabsPanelProps> = props => {
export const TabsPane: React.FC<TabsPaneProps> = props => {
const { className, style = {}, children, tabDirection = 'horizontal', index = 0, current = 0 } = props

return (
Expand Down

0 comments on commit 22aa3be

Please sign in to comment.