Files
bulma/docs/_react/bulma-customizer/src/pages/Other.jsx

17 lines
302 B
React
Raw Normal View History

2024-06-26 00:49:42 +01:00
import VarItem from "../components/VarItem";
import { CSSVAR_KEYS } from "../constants";
function Other() {
const ids = CSSVAR_KEYS.other.map((i) => i.id);
return (
<div>
{ids.map((id) => {
return <VarItem key={id} id={id} />;
})}
</div>
);
}
export default Other;