mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 08:23:55 +00:00
12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
import ProtectRoute from '../../common/components/protect-route/ProtectRoute';
|
|
|
|
import Operator from './Operator';
|
|
|
|
export default function OperatorExport() {
|
|
return (
|
|
<ProtectRoute permission='operator'>
|
|
<Operator />
|
|
</ProtectRoute>
|
|
);
|
|
}
|