style(biome): using biome for format, lint, check

This commit is contained in:
2025-11-08 12:58:40 +02:00
parent 075a388ccb
commit fdd1cbbfd5
152 changed files with 3737 additions and 3989 deletions
@@ -3,11 +3,11 @@ import type React from "react";
import { H4, ParagraphProps } from "tamagui";
export const Heading = (props: React.PropsWithChildren<ParagraphProps>) => {
const { children, ...rest } = props;
const { children, ...rest } = props;
return (
<H4 fontWeight="bold" alignSelf="flex-start" {...rest}>
{children}
</H4>
);
return (
<H4 alignSelf="flex-start" fontWeight="bold" {...rest}>
{children}
</H4>
);
};