21 lines
563 B
JavaScript
21 lines
563 B
JavaScript
import { View, Text } from "react-native";
|
||
import React from "react";
|
||
import CreateLyricsHeader from "./components/CreateLyricsHeader";
|
||
import CustomInput from "./components/CustomInput";
|
||
|
||
const SongTo = ({ audience, setAudience }) => {
|
||
return (
|
||
<View style={{ flex: 1, gap: 10, marginTop: 16 }}>
|
||
<CreateLyricsHeader title="À qui s’adresse ta chanson ?" />
|
||
<CustomInput
|
||
placeholder="Ecrire mon contexte"
|
||
height={283}
|
||
value={audience}
|
||
setValue={setAudience}
|
||
/>
|
||
</View>
|
||
);
|
||
};
|
||
|
||
export default SongTo;
|