mirror of
https://github.com/jgthms/bulma
synced 2026-03-20 12:24:28 -07:00
17 lines
315 B
React
17 lines
315 B
React
|
|
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;
|