import { StyleSheet } from "react-native";

export const Style = StyleSheet.create({
    row: {
        flexDirection: "row",
        justifyContent: "space-between",
    },
    buttonStyle: {
        flex: 1,
        margin: 8,
        alignItems: "center",
        justifyContent: "center",
    }
})