NotFound.js 266 B

12345678910
  1. import { Container } from "react-bootstrap"
  2. const NotFound = ({}) => {
  3. return (
  4. <Container className='d-flex justify-content-center mt-5'>
  5. <h1>Страница не найдена :/ </h1>
  6. </Container>
  7. )
  8. }
  9. export default NotFound