Skip to content

Commit

Permalink
fix(exports): Using named function even if no css
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri Kopriwa committed Dec 21, 2018
1 parent fd88a7a commit 7a1e60b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Details/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import React from 'react';
const Details = <details {...props} />;
export default (props) => Details;
const Details = (props) => <details {...props} />;
export default Details;

0 comments on commit 7a1e60b

Please sign in to comment.