add playlist component layout fixes

This commit is contained in:
Violet Caulfield
2025-02-10 22:40:00 -06:00
parent 8d2c8ff750
commit 450e577ae3

View File

@@ -2,13 +2,14 @@ import { Label } from "../../../components/Global/helpers/text";
import Input from "../../../components/Global/helpers/input";
import React from "react";
import { SafeAreaView } from "react-native-safe-area-context";
import { View } from "tamagui";
export default function AddPlaylist() : React.JSX.Element {
return (
<SafeAreaView>
<View marginHorizontal={"$2"}>
<Label size="$2" htmlFor="name">Name</Label>
<Input id="name" />
</SafeAreaView>
</View>
)
}