chore(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / ui / web / src / views / NotFoundView.vue
... / ...
CommitLineData
1<template>
2 <Container id="not-found">
3 404 - Not found
4 </Container>
5</template>
6
7<script setup lang="ts">
8import Container from '@/components/Container.vue'
9</script>
10
11<style>
12#not-found {
13 display: flex;
14 justify-content: center;
15 align-items: center;
16 font-size: 2rem;
17 font-weight: bold;
18}
19</style>