Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
feat(CommentsCard): Removing unused field and exporting component.
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronCoplan committed Nov 15, 2018
1 parent bdd5886 commit 671539f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/CommentsCard/CommentsCard.react.js
Expand Up @@ -9,7 +9,6 @@ import Comment from "../Comment";
type Props = {|
+children?: React.Node,
+className?: string,
+comments?: React.Node,
|};

function CommentsCard({ className, children }: Props): React.Node {
Expand Down
5 changes: 5 additions & 0 deletions src/components/CommentsCard/index.js
@@ -0,0 +1,5 @@
// @flow

import CommentsCard from "./CommentsCard.react";

export { CommentsCard as default };
3 changes: 2 additions & 1 deletion src/components/index.js
Expand Up @@ -7,7 +7,8 @@ export { default as Badge } from "./Badge";
export { default as BlogCard } from "./BlogCard";
export { default as Button } from "./Button";
export { default as Card } from "./Card";
export { default as Comment } from './Comment';
export { default as Comment } from "./Comment";
export { default as CommentsCard } from "./CommentsCard";
export { default as ContactCard } from "./ContactCard";
export { default as Container } from "./Container.react";
export { default as Dimmer } from "./Dimmer";
Expand Down

0 comments on commit 671539f

Please sign in to comment.