-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove toast about old.online.ntnu.no
- Loading branch information
1 parent
4d3bc92
commit 781e4e6
Showing
2 changed files
with
15 additions
and
65 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
import EventsContainer from 'events/components/EventsContainer'; | ||
import React, { FC } from 'react'; | ||
import Articles from './components/Articles'; | ||
import ForCompanies from './components/ForCompanies'; | ||
import Offline from './components/Offline'; | ||
import ToastOld from './components/ToastOld'; | ||
import { IOfflineIssue } from './models/Offline'; | ||
import AprilFoolsCaptcha from './components/AprilFoolsCaptcha'; | ||
import EventsContainer from "events/components/EventsContainer"; | ||
import React, { FC } from "react"; | ||
import Articles from "./components/Articles"; | ||
import ForCompanies from "./components/ForCompanies"; | ||
import Offline from "./components/Offline"; | ||
import { IOfflineIssue } from "./models/Offline"; | ||
import AprilFoolsCaptcha from "./components/AprilFoolsCaptcha"; | ||
|
||
interface FrontpageProps { | ||
offlines: IOfflineIssue[]; | ||
offlines: IOfflineIssue[]; | ||
} | ||
|
||
const Frontpage: FC<FrontpageProps> = ({ offlines }) => ( | ||
<> | ||
<AprilFoolsCaptcha /> | ||
<ToastOld /> | ||
<EventsContainer /> | ||
<Articles /> | ||
<Offline issues={offlines} /> | ||
<ForCompanies /> | ||
</> | ||
<> | ||
<AprilFoolsCaptcha /> | ||
<EventsContainer /> | ||
<Articles /> | ||
<Offline issues={offlines} /> | ||
<ForCompanies /> | ||
</> | ||
); | ||
|
||
export default Frontpage; |