interactives/src/pages/theme-pages/DataStructures.tsx
Neeldhara Misra 7451682dd5 Add Ternary Search Magic Trick interactive and fix layout issues
- Create new Ternary Search Magic Trick interactive with ternary search logic
- Add emoji buttons and 'not present' option for better UX
- Implement 'How it Works' modal with embedded YouTube video
- Fix layout margins when accessing interactives from theme pages
- Add standalone and green screen pages for the new interactive
- Update Data Structures theme to include the new interactive
2025-07-20 10:29:09 +05:30

7 lines
No EOL
165 B
TypeScript

import InteractiveGallery from "@/components/InteractiveGallery";
const DataStructures = () => {
return <InteractiveGallery />;
};
export default DataStructures;