Resolve no shop access.
This commit is contained in:
12
client/src/components/no-shop/no-shop.component.jsx
Normal file
12
client/src/components/no-shop/no-shop.component.jsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user