reactjs
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
//Components imports
|
||||
import GlobalRouter from "./Routing/Router";
|
||||
import Header from "./Header/Header";
|
||||
import HeroOne from "./Hero/Hero";
|
||||
import CTA from "./CTA/CTA"
|
||||
import Footer from "./Footer/Footer";
|
||||
import Dropdown from "./Dropdown/Dropdown";
|
||||
import CompanyResults from "./Cards/CompanyResult";
|
||||
import FinishedInternShip from "./Cards/FinishedInternCard";
|
||||
|
||||
//Layout imports
|
||||
import DefaultLayout from "./Layouts/DefaultLayout";
|
||||
|
||||
//Pages imports
|
||||
import HomePage from './Pages/Home/HomePage';
|
||||
import InternSearch from "./Pages/Search/InternSearchPage";
|
||||
import CompanyProfile from "./Pages/Profile/CompanyProfile";
|
||||
import UserProfile from "./Pages/Profile/UserProfile";
|
||||
import ContactPage from "./Pages/Contact/Contact";
|
||||
|
||||
//Style
|
||||
import "./GlobalStyles.css";
|
||||
|
||||
//Components exports
|
||||
export {
|
||||
GlobalRouter,
|
||||
Header,
|
||||
HeroOne,
|
||||
CTA,
|
||||
Footer,
|
||||
Dropdown,
|
||||
CompanyResults,
|
||||
FinishedInternShip,
|
||||
}
|
||||
|
||||
|
||||
//Layout exports
|
||||
export {
|
||||
DefaultLayout,
|
||||
}
|
||||
|
||||
|
||||
//Pages export
|
||||
export {
|
||||
HomePage,
|
||||
InternSearch,
|
||||
CompanyProfile,
|
||||
UserProfile,
|
||||
ContactPage,
|
||||
}
|
||||
Reference in New Issue
Block a user