Build a Flight Booker component in React that allows users to select departure and return dates for a flight.
Requirements:
- Render two date inputs: one for departure and one for return.
- The return date must always be the same or after the departure date.
- Show an error if the return date is before the departure date.
- Show a confirmation message when the booking is valid.
- Focus on functionality over styling.
- The component should work out-of-the-box in a live React preview (e.g., CodeSandbox/Sandpack).