mirror of
https://github.com/jgthms/bulma
synced 2026-03-20 12:24:28 -07:00
Add all Elements
This commit is contained in:
16
docs/_react/bulma-customizer/src/pages/elements/Title.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/elements/Title.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import VarItem from "components/VarItem";
|
||||
import { CSSVAR_KEYS } from "root/constants";
|
||||
|
||||
function Title() {
|
||||
const ids = CSSVAR_KEYS.title.map((i) => i.id);
|
||||
|
||||
return (
|
||||
<div>
|
||||
{ids.map((id) => {
|
||||
return <VarItem key={id} id={id} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Title;
|
||||
Reference in New Issue
Block a user