Skip to content
Snippets Groups Projects

Updated header and footer

Merged Sivert Kronen Hatteberg requested to merge GREG-98-styling-fixes into master
Files
3
import { appInst } from 'appConfig'
import UiOLogoBar from './UiO'
import UiBLogoBar from './UiB'
function LogoBar() {
switch (appInst) {
case 'uio':
return <UiOLogoBar />
case 'uib':
return <UiBLogoBar />
default:
return <UiOLogoBar />
}
}
export default LogoBar
Loading