chore: move files to new structure

This commit is contained in:
Carlos Valente
2024-12-10 14:31:50 +01:00
committed by Carlos Valente
parent fa7ec623f1
commit 6ffbf2af9d
27 changed files with 6 additions and 6 deletions
@@ -0,0 +1,11 @@
import ProtectRoute from '../../common/components/protect-route/ProtectRoute';
import CuesheetWrapper from './CuesheetWrapper';
export default function ProtectedCuesheet() {
return (
<ProtectRoute permission='operator'>
<CuesheetWrapper />
</ProtectRoute>
);
}