24 lines
665 B
JavaScript
24 lines
665 B
JavaScript
import { View } from "react-native";
|
||
import React from "react";
|
||
import CreateLyricsHeader from "./components/CreateLyricsHeader";
|
||
import CustomInput from "./components/CustomInput";
|
||
|
||
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}
|
||
value={context}
|
||
setValue={setContext}
|
||
/>
|
||
</View>
|
||
);
|
||
};
|
||
|
||
export default SpecificityContext;
|