Resolve no shop access.

This commit is contained in:
Patrick Fic
2021-03-09 13:00:45 -08:00
parent 7a772ff2ee
commit 213634bba8
7 changed files with 52 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
import React from "react";
import { Result } from "antd";
import { useTranslation } from "react-i18next";
export default function NoShop() {
const { t } = useTranslation();
return (
<div>
<Result status="403" title={t("general.messages.noshop")} />
</div>
);
}