Arthur Clemens
Arthur Clemens
I don't think there is anything specific to dialogic that would prevent this. Dialogic manages dialog/notification state, but what is displayed - and how you provide interacting with the content...
I don't understand.
I have added a line to the README.
I also wrote a test case: https://jsfiddle.net/ArthurClemens/5b9nLpu2/
It seems to me that the issue is that `key` is missing in the `li` items.
After almost 5 years, I cannot remember this.
This is how I would do it: ```js const screenClass = useScreenClass(); const defaultGutterWidth = 20; const gutterWidths = { xl: 30, xxl: 40, }; const gutterWidth = gutterWidths[screenClass] ||...
How would that work? Do you know of a library that can convert JSX strings to HTML?
Taking a 101 JSX piece of code: ```jsx function formatName(user) { return user.firstName + ' ' + user.lastName; } const user = { firstName: 'Harper', lastName: 'Perez' }; const element...
The workaround I found is to require the config file and pass it to the plugin: ```js const config = require('./postcss.config.js'); ... plugins: [ postcss(config), ] ```