import React from 'react'; import s from '../../styles/app.style'; export { Unique } from './Unique'; export { Initiative } from './Initiative'; export { Ability } from './Ability'; export * from './_icons'; export * from './_text'; export function UnderConstruction(props) { return (

This page is currently under construction

); } export function PageNotFound(props) { return (

404 route not found - {s.code(props.location.pathname)}

); } export function Loading(props) { return (Loading...); } export function Splash(props) { let { image } = props; return (
); } export function Donate(props) { return (
{ /* */}
); } export function SearchButton(props) { return ( ); }