Skip to content

Instantly share code, notes, and snippets.

@darae07
Created July 30, 2020 15:12
Show Gist options
  • Save darae07/0116e5b3f028ce5356401580c7e8cd7f to your computer and use it in GitHub Desktop.
Save darae07/0116e5b3f028ce5356401580c7e8cd7f to your computer and use it in GitHub Desktop.
// case 1
export { default as App } from "./App";
export { default as Home } from "./Home";
export { default as Login } from "./Login";
export { default as Navigation } from "./Navigation";
export { default as NotFound } from "./NotFound";
export { default as Signup } from "./Signup";
// case 2
import App from "./App";
import Home from "./Home";
import Login from "./Login";
import Navigation from "./Navigation";
import NotFound from "./NotFound";
import Signup from "./Signup";
export { App, Home, Login, Navigation, NotFound, Signup } ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment