continue flow integartion
This commit is contained in:
@@ -3,11 +3,16 @@ import React from "react";
|
||||
import CreateLyricsHeader from "./components/CreateLyricsHeader";
|
||||
import CustomInput from "./components/CustomInput";
|
||||
|
||||
const SongTo = () => {
|
||||
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} />
|
||||
<CustomInput
|
||||
placeholder="Ecrire mon contexte"
|
||||
height={283}
|
||||
value={audience}
|
||||
setValue={setAudience}
|
||||
/>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user