using-base-ui-with-material-ui
SKILL.md
Announce on start: You must announce "Using Base UI with Material UI skill" when this skill is invoked.
Always have enough context from the Base UI documentation to build the component requested by the user.
Base UI as the foundation
Render Base UI components as a foundation for the UI and then pass render prop using proper Material UI components.
For example, a Navigation Menu, should use Link from Material UI as the render element for NavigationMenu.Link.:
import { NavigationMenu } from '@base-ui-components/react/navigation-menu';
import Box from '@mui/material/Box';
import Link from '@mui/material/Link';
import Typography from '@mui/material/Typography';