mirror of
https://github.com/jgthms/bulma
synced 2026-03-21 04:34:30 -07:00
17 lines
302 B
React
17 lines
302 B
React
|
|
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;
|