Добавлена ссылка перехода на страницу входа в AccessDenied

This commit is contained in:
Александр Сироткин 2022-02-22 16:20:04 +05:00
parent 2c44899212
commit ef447d5a12

View File

@ -1,14 +1,17 @@
import { memo } from 'react' import { memo } from 'react'
import { Link } from 'react-router-dom'
export const AccessDenied = memo(() => ( export const AccessDenied = memo(() => (
<div style={{ <div style={{
width: '100vw', width: '100vw',
height: '100vh', height: '100vh',
display: 'flex', display: 'flex',
flexDirection: 'column',
justifyContent: 'center', justifyContent: 'center',
alignItems: 'center' alignItems: 'center'
}}> }}>
Доступ запрещён <h2>Доступ запрещён</h2>
<Link to={'/login'}>На страницу входа</Link>
</div> </div>
)) ))