> ## Documentation Index
> Fetch the complete documentation index at: https://v0.x-docs.novu.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrate Novu with Remix

```tsx theme={null}
import { serve } from "@novu/framework/remix";
import { myWorkflow } from "../novu/workflows";

const handler = serve({
    workflows: [myWorkflow],
  });
  
export { handler as action, handler as loader };
```

Check out a comprehensive [guide on sending notifications in Remix with React email](/guides/framework-guides/framework-remix).
