Skip to content

Instantly share code, notes, and snippets.

@rago4
rago4 / _index.tsx
Last active January 21, 2024 20:51
Client caching with Remix and localforage. ✨
import { json } from '@remix-run/node'
import { type ClientLoaderFunctionArgs, useLoaderData } from '@remix-run/react'
import localforage from 'localforage'
type Post = {
id: number
title: string
}
// Regular loader 🥱