Skip to content
This repository has been archived by the owner on Jun 3, 2019. It is now read-only.

Commit

Permalink
prettify index.js default export (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgenyboxer authored and ctrlplusb committed Nov 9, 2016
1 parent 7eaa7d8 commit 55ad02d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 21 deletions.
4 changes: 1 addition & 3 deletions src/shared/universal/components/App/About/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* @flow */

import About from './About';

export default About;
export { default } from './About';
4 changes: 1 addition & 3 deletions src/shared/universal/components/App/Error404/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* @flow */

import Error404 from './Error404';

export default Error404;
export { default } from './Error404';
4 changes: 1 addition & 3 deletions src/shared/universal/components/App/Header/Logo/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* @flow */

import Logo from './Logo';

export default Logo;
export { default } from './Logo';
4 changes: 1 addition & 3 deletions src/shared/universal/components/App/Header/Menu/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* @flow */

import Menu from './Menu';

export default Menu;
export { default } from './Menu';
4 changes: 1 addition & 3 deletions src/shared/universal/components/App/Header/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* @flow */

import Header from './Header';

export default Header;
export { default } from './Header';
4 changes: 1 addition & 3 deletions src/shared/universal/components/App/Home/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* @flow */

import Home from './Home';

export default Home;
export { default } from './Home';
4 changes: 1 addition & 3 deletions src/shared/universal/components/App/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* @flow */

import App from './App';

export default App;
export { default } from './App';

0 comments on commit 55ad02d

Please sign in to comment.