Skip to content

Commit

Permalink
feat: formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
Khaan25 committed Oct 11, 2024
1 parent 49bb4ef commit 7ba5ac6
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions apps/www/components/blog/blog-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ export type BlogListProps = {

export function BlogList({ children, className }: BlogListProps) {
// console.log("BlogList children", children);
return (
<ul className={cn("flex flex-col list-disc pl-6 text-white", className)}>{children}</ul>
);
return <ul className={cn("flex flex-col list-disc pl-6 text-white", className)}>{children}</ul>;
}
export function BlogListNumbered({ children, className }: BlogListProps) {
// console.log("BlogList children", children);
return (
<ol className={cn("flex flex-col list-decimal pl-6 text-white ", className)}>
{children}
</ol>
<ol className={cn("flex flex-col list-decimal pl-6 text-white ", className)}>{children}</ol>
);
}
export function BlogListItem({ children, className }: BlogListProps) {
Expand Down

0 comments on commit 7ba5ac6

Please sign in to comment.