fix: react email

This commit is contained in:
Carl-Gerhard Lindesvärd
2026-01-22 12:32:14 +01:00
parent 6c56efdf37
commit f83fe7a0fc
3 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
import { Button as EmailButton } from '@react-email/components';
import type * as React from 'react';
// biome-ignore lint/style/useImportType: <explanation>
import React from 'react';
export function Button({
href,

View File

@@ -7,7 +7,8 @@ import {
Section,
Tailwind,
} from '@react-email/components';
import type React from 'react';
// biome-ignore lint/style/useImportType: <explanation>
import React from 'react';
import { Footer } from './footer';
type Props = {

View File

@@ -1,4 +1,6 @@
import { Text } from '@react-email/components';
// biome-ignore lint/style/useImportType: <explanation>
import React from 'react';
export function List({ items }: { items: React.ReactNode[] }) {
return (