6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
export const ForbiddenSection = () => {
|
||
|
return <>Forbidden</>;
|
||
|
};
|