Skip to content

Instantly share code, notes, and snippets.

@dipeshhkc
Created January 8, 2022 17:26
Show Gist options
  • Save dipeshhkc/7cfc543ed7ff0cfec56632e1be7684dd to your computer and use it in GitHub Desktop.
Save dipeshhkc/7cfc543ed7ff0cfec56632e1be7684dd to your computer and use it in GitHub Desktop.
import { LoaderFunction } from '@remix-run/server-runtime';
import { db } from '~/utils/db.server';
export const loader: LoaderFunction = async () => {
return db.task.findMany();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment