Files
cunningham/apps/demo/cunningham.ts
Nathan Vasse 8b1dbd2f25 (demo) add themes handling
We now can switch theme directly inside the demo app.
2023-10-04 15:18:00 +02:00

15 lines
250 B
TypeScript

import { Configuration } from "@openfun/cunningham-react";
const config: Configuration = {
themes: {
default: {
components: {
button: {
"border-radius": "30px",
},
},
},
},
};
export default config;