import path from "path";

export const useGetFileName = (url: string | undefined) => {
  return path.parse(url!);
};


