Remove .env

This commit is contained in:
mbaharip
2023-04-21 21:07:19 +07:00
commit b6fc85151a
72 changed files with 9502 additions and 0 deletions
@@ -0,0 +1,12 @@
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>
);
}