mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 01:43:43 +00:00
dda92ba3a8
* refactor: implement import lint
14 lines
257 B
React
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>
|
|
);
|
|
}
|