import React from 'react' import PropTypes from 'prop-types' import Button from './button' import Heading from './heading' import Icon from './icon' import Text from './text' import ResponsiveClassesComponent from '../features/ui/util/responsive_classes_component' const GlobalFooter = () => (
We build Freedom Of Speech Software. We champion free speech, individual liberty and the free flow of information online. All are welcome.
© 2020  Copyright | 
Made in USA 🇺🇸
) class GlobalFooterColumn extends React.PureComponent { render() { const { title, items } = this.props return (
{title}
{ items.map((item, i) => ( )) }
) } } GlobalFooterColumn.propTypes = { title: PropTypes.string, items: PropTypes.array, } export default GlobalFooter