import React, { useRef, useEffect } from 'react'; import { BrowserRouter as Router, Switch, Route, Link, useParams, useLocation } from 'react-router-dom'; import { Container, Icon } from 'semantic-ui-react'; import { scene } from './spaceport/scene'; export const Footer = () => { const footerRef = useRef(); useEffect(() => { if (!footerRef.current) return; if (footerRef.current.clientWidth < 650) return scene({ ref: footerRef }); }, [footerRef]); return (

site logo

Contact us:{' '} info@protospace.ca

Created and hosted by Protospace members for Protospace members.

Spaceport is free and open-source software.{' '} Click here {' '} to view the source code and license.

© 2020 Calgary Protospace Ltd.

); };