Update some formatting issues since latest prettier

This commit is contained in:
Berry de Vos 2023-12-15 04:39:59 +01:00 committed by Berry de Vos
parent e599f8d9dd
commit ce020f336c
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />

View file

@ -5,7 +5,7 @@ import { Text } from '@react-email/text'
interface Props {
content: string
href: string
href: string | undefined
paragraphStyle: CSSProperties
blockquoteStyle: CSSProperties
}

View file

@ -5,7 +5,7 @@ import { Link } from '@react-email/link'
interface Props {
content: string
href: string
href: string | undefined
}
export default ({ content, href }: Props) => {

View file

@ -6,5 +6,5 @@ import './index.css'
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<React.StrictMode>
<PreviewApp />
</React.StrictMode>
</React.StrictMode>,
)