style(web): match ui/ no-semicolon convention in PageTitle (#57)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import type { ComponentProps } from "react";
|
import type { ComponentProps } from "react"
|
||||||
|
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
export function PageTitle({ className, ...props }: ComponentProps<"h1">) {
|
export function PageTitle({ className, ...props }: ComponentProps<"h1">) {
|
||||||
return (
|
return (
|
||||||
@@ -9,5 +9,5 @@ export function PageTitle({ className, ...props }: ComponentProps<"h1">) {
|
|||||||
className={cn("text-2xl font-semibold tracking-tight", className)}
|
className={cn("text-2xl font-semibold tracking-tight", className)}
|
||||||
{...props}
|
{...props}
|
||||||
/>
|
/>
|
||||||
);
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user