Skip to content

Commit

Permalink
Removed unused export const statements
Browse files Browse the repository at this point in the history
  • Loading branch information
hsource committed Mar 20, 2020
1 parent 2084147 commit 2261155
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Carousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const defaultProps = {
},
};

export const trackBaseClassName = componentBaseClassNames.Track;
const trackBaseClassName = componentBaseClassNames.Track;

class Carousel extends Component<CarouselProps, CarouselState> {
commonProps: any; // TODO
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const headerCSS = ({ interactionIsIdle }: State) => ({
zIndex: 1,
});

export const headerBaseClassName = componentBaseClassNames.Header;
const headerBaseClassName = componentBaseClassNames.Header;

const Header = (props: Props) => {
const {
Expand Down
2 changes: 1 addition & 1 deletion src/components/View.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const viewCSS = () => ({
textAlign: 'center',
});

export const viewBaseClassName = componentBaseClassNames.View;
const viewBaseClassName = componentBaseClassNames.View;

const View = (props: Props) => {
const { data, formatters, getStyles, index, isFullscreen, isModal } = props;
Expand Down

0 comments on commit 2261155

Please sign in to comment.