File size: 179 Bytes
f2e9a59
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { useCallback } from 'react';
export const useMediaDirectory = () => {
  const set = useCallback((path: string) => {
    return path;
  }, []);
  return {
    set,
  };
};