Added biome for formatting, code formatted
This commit is contained in:
@@ -2,40 +2,40 @@ import React from "react";
|
||||
import { Text, StyleSheet, Pressable } from "react-native";
|
||||
|
||||
export default function Button(props) {
|
||||
const { onPress, title = "Save", color = "black" } = props;
|
||||
return (
|
||||
<Pressable
|
||||
style={({ pressed }) => [
|
||||
{
|
||||
backgroundColor: pressed
|
||||
? "rgb(210, 230, 255 )"
|
||||
: color
|
||||
? color
|
||||
: "black",
|
||||
| < | ||||