Files
ontime/client/src/features/editors/ProtectedEditor.jsx
T
Carlos Valente dda92ba3a8 Refactor imports
* refactor: implement import lint
2022-06-11 23:17:16 +02:00

14 lines
257 B
React

import React from 'react';
import ProtectRoute from '../../common/components/protectRoute/ProtectRoute';
import Editor from './Editor';
export default function ProtectedEditor() {
return (
<ProtectRoute>
<Editor />
</ProtectRoute>
);
}