mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-03-01 03:03:13 -05:00
Files
e2b9f02f55fe8f43e3fa3944719d9d0c314c7899
18 lines
218 B
Vue
18 lines
218 B
Vue
<template>
|
|||
<div>
|
|||
<The404>
|
|||
<h1 class="mx-auto">No Recipe Found</h1>
|
|||
</The404>
|
|||
</div>
|
|||
</template>
|
|||
|
|||
<script>
|
|||
import The404 from "./The404.vue";
|
|||
export default {
|
|||
components: { The404 },
|
|||
};
|
|||
</script>
|
|||
|
|||
|
|||
|