mirror of
https://github.com/Nezumi-2711/next-gdrive-index.git
synced 2026-09-22 20:01:36 +00:00
13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
import { TFile } from "@/types/googleapis";
|
|
import { drive_v3 } from "googleapis";
|
|
|
|
type Props = {
|
|
data: TFile | drive_v3.Schema$File;
|
|
};
|
|
|
|
export default function ModelPreview({ data }: Props) {
|
|
return (
|
|
<div className='flex w-full items-center justify-center'>Model Preview</div>
|
|
);
|
|
}
|