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' export default class GlobalFooter extends PureComponent { render() { return (
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 PureComponent { static propTypes = { title: PropTypes.string, items: PropTypes.array, } componentWillMount() { this.buttonOptions = { backgroundColor: 'none', color: 'primary', isText: true, } } render() { const { title, items } = this.props const { buttonOptions } = this return (
{title}
{ items.map((item, i) => ( )) }
) } }