import { createContext } from 'react';

const EditRootClipContext = createContext<string>(undefined as never);
export default EditRootClipContext;
