import { Fragment } from 'react'; // UI import { Button, SettingsHeadline } from '../../UI'; import { AuthForm } from './AuthForm/AuthForm'; import classes from './AppDetails.module.css'; // Store import { useSelector } from 'react-redux'; import { State } from '../../../store/reducers'; // Other import { checkVersion } from '../../../utility'; export const AppDetails = (): JSX.Element => { const { isAuthenticated } = useSelector((state: State) => state.auth); return ( {isAuthenticated && (

Flame {' '} version {process.env.REACT_APP_VERSION}

See changelog{' '} here

)}
); };