mirror of
https://github.com/thelittlerocket/rss-to-email.git
synced 2024-12-26 11:51:23 +08:00
Update some formatting issues since latest prettier
This commit is contained in:
parent
e599f8d9dd
commit
ce020f336c
4 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
|
|
|
@ -5,7 +5,7 @@ import { Text } from '@react-email/text'
|
|||
|
||||
interface Props {
|
||||
content: string
|
||||
href: string
|
||||
href: string | undefined
|
||||
paragraphStyle: CSSProperties
|
||||
blockquoteStyle: CSSProperties
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ import { Link } from '@react-email/link'
|
|||
|
||||
interface Props {
|
||||
content: string
|
||||
href: string
|
||||
href: string | undefined
|
||||
}
|
||||
|
||||
export default ({ content, href }: Props) => {
|
||||
|
|
|
@ -6,5 +6,5 @@ import './index.css'
|
|||
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
|
||||
<React.StrictMode>
|
||||
<PreviewApp />
|
||||
</React.StrictMode>
|
||||
</React.StrictMode>,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue