Build a Transfer List component in React that allows moving items between two lists.
Requirements:
- Display two lists side by side: "Available" and "Selected".
- Each list should display its items.
- User should be able to:
- Move an item from "Available" to "Selected".
- Move an item from "Selected" back to "Available".
- Items should not be duplicated; each item should only exist in one list at a time.
- Focus on functionality over styling.
- The component should work out-of-the-box in a live React preview (e.g., CodeSandbox/Sandpack).