import React from 'react'; import { useParams, Link } from 'react-router-dom'; const CreateSubmission: React.FC = () => { const { id } = useParams(); return (

Create Translation

Submit your creative translation for this text

Text ID: {id}

This page will contain a form for creating transcreations, including fields for the translated text, cultural adaptations, explanations, and target culture selection.

Back to Text View My Submissions
); }; export default CreateSubmission;