continue flow integartion
This commit is contained in:
@@ -3,14 +3,19 @@ import React from "react";
|
||||
import CreateLyricsHeader from "./components/CreateLyricsHeader";
|
||||
import CustomInput from "./components/CustomInput";
|
||||
|
||||
const SpecificityContext = () => {
|
||||
const SpecificityContext = ({ context, setContext }) => {
|
||||
return (
|
||||
<View style={{ flex: 1, gap: 10, marginTop: 16 }}>
|
||||
<CreateLyricsHeader
|
||||
title="Spécificité du contexte"
|
||||
subTitle="Dis-nous en un peu plus pour qu’on puisse mieux t’aider."
|
||||
/>
|
||||
<CustomInput placeholder="Ecrire mon contexte" height={283} />
|
||||
<CustomInput
|
||||
placeholder="Ecrire mon contexte"
|
||||
height={283}
|
||||
value={context}
|
||||
setValue={setContext}
|
||||
/>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user