style(biome): using biome for format, lint, check
This commit is contained in:
@@ -5,26 +5,26 @@ import { Label, ListItem, ScrollView, Separator, YGroup } from "tamagui";
|
||||
import { ScreenView } from "@/ui/components/layout";
|
||||
|
||||
export default function Index() {
|
||||
const router = useRouter();
|
||||
const router = useRouter();
|
||||
|
||||
return (
|
||||
<ScreenView>
|
||||
<ScreenView.Heading title="Profile" />
|
||||
return (
|
||||
<ScreenView>
|
||||
<ScreenView.Heading title="Profile" />
|
||||
|
||||
<ScrollView width="100%">
|
||||
<Label>Settings</Label>
|
||||
<YGroup alignSelf="center" bordered size="$4">
|
||||
<YGroup.Item>
|
||||
<ListItem
|
||||
onPress={() => router.push("/account/settings")}
|
||||
icon={Settings}
|
||||
iconAfter={ChevronRight}
|
||||
title="Settings"
|
||||
/>
|
||||
</YGroup.Item>
|
||||
<Separator />
|
||||
</YGroup>
|
||||
</ScrollView>
|
||||
</ScreenView>
|
||||
);
|
||||
<ScrollView width="100%">
|
||||
<Label>Settings</Label>
|
||||
<YGroup alignSelf="center" bordered size="$4">
|
||||
<YGroup.Item>
|
||||
<ListItem
|
||||
icon={Settings}
|
||||
iconAfter={ChevronRight}
|
||||
onPress={() => router.push("/account/settings")}
|
||||
title="Settings"
|
||||
/>
|
||||
</YGroup.Item>
|
||||
<Separator />
|
||||
</YGroup>
|
||||
</ScrollView>
|
||||
</ScreenView>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user