-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ui: frontsite: Update Overridable opening hours header and details co…
…mponent
- Loading branch information
1 parent
a36ca90
commit e806aa0
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
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
24 changes: 24 additions & 0 deletions
24
ui/src/overridden/frontsite/OpeningHours/OpeningHoursDetails.js
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from "react"; | ||
import { Header, Message } from "semantic-ui-react"; | ||
|
||
export const OpeningHoursDetails = () => { | ||
return ( | ||
<> | ||
<Header as="h2">Opening hours</Header> | ||
<Message info> | ||
<Message.Content> | ||
The CERN community can access the library, located in <b>52/1-052, </b> | ||
<b> | ||
<u>24/7</u> | ||
</b> | ||
! | ||
<br /> | ||
Staff is available to help at the Library and Bookshop Welcome Desk, located | ||
in | ||
<b> 52/1-054</b>, open as per the schedule below : | ||
<br /> | ||
</Message.Content> | ||
</Message> | ||
</> | ||
); | ||
}; |