// @flow import React from 'react'; import { SITE_NAME, LOGIN_IMG_URL } from 'config'; function LoginGraphic(props: any) { const [error, setError] = React.useState(false); const src = LOGIN_IMG_URL; return error || !src ? null : (