live video streaming server in golang
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

46 lines
985 B

import React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { makeStyles } from '@material-ui/styles';
import { Typography, Link } from '@material-ui/core';
const useStyles = makeStyles(theme => ({
root: {
padding: theme.spacing(4)
}
}));
const Footer = props => {
const { className, ...rest } = props;
const classes = useStyles();
return (
<div
{...rest}
className={clsx(classes.root, className)}
>
<Typography variant="body1">
&copy;{' '}
<Link
component="a"
href="https://devias.io/"
target="_blank"
>
Devias IO
</Link>
. 2019
</Typography>
<Typography variant="caption">
Created with love for the environment. By designers and developers who
love to work together in offices!
</Typography>
</div>
);
};
Footer.propTypes = {
className: PropTypes.string
};
export default Footer;