mirror of
https://github.com/jgthms/bulma
synced 2026-03-21 12:44:30 -07:00
Add Color module
This commit is contained in:
16
docs/_react/bulma-customizer/src/pages/Scheme.jsx
Normal file
16
docs/_react/bulma-customizer/src/pages/Scheme.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import Slider from "../components/Slider";
|
||||
import { CSSVAR_KEYS } from "../constants";
|
||||
|
||||
function Scheme() {
|
||||
const schemeIds = CSSVAR_KEYS.scheme;
|
||||
|
||||
return (
|
||||
<div>
|
||||
{schemeIds.map((schemeId) => {
|
||||
return <Slider key={schemeId} id={schemeId} />;
|
||||
})}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Scheme;
|
||||
Reference in New Issue
Block a user