Skip to content

Commit

Permalink
Merge pull request #1294 from skbkontur/fix-styleguide
Browse files Browse the repository at this point in the history
docs(retail-ui): fix export components for styleguidist
  • Loading branch information
wKich authored Mar 27, 2019
2 parents 833208f + 0e8c17f commit b05f640
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface CurrencyLabelProps {
currencySymbol?: React.ReactNode | null;
}

const CurrencyLabel: React.SFC<CurrencyLabelProps> = ({
export const CurrencyLabel: React.SFC<CurrencyLabelProps> = ({
value,
fractionDigits = 2,
currencySymbol = null,
Expand Down
2 changes: 1 addition & 1 deletion packages/retail-ui/components/Token/Token.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export interface TokenProps {
warning?: boolean;
}

const Token: React.SFC<TokenProps & TokenActions> = ({
export const Token: React.SFC<TokenProps & TokenActions> = ({
children,
isActive,
colors,
Expand Down

0 comments on commit b05f640

Please sign in to comment.