mirror of
https://github.com/jgthms/bulma
synced 2026-03-17 10:54:29 -07:00
19 lines
364 B
JavaScript
19 lines
364 B
JavaScript
import VarItem from "components/VarItem";
|
|
import { CSSVAR_KEYS } from "root/constants";
|
|
|
|
import cn from "root/App.module.css";
|
|
|
|
function Delete() {
|
|
const ids = CSSVAR_KEYS.delete.map((i) => i.id);
|
|
|
|
return (
|
|
<div className={cn.items}>
|
|
{ids.map((id) => {
|
|
return <VarItem key={id} id={id} />;
|
|
})}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Delete;
|