#multiple classNames?
3 messages · Page 1 of 1 (latest)
3 messages · Page 1 of 1 (latest)
I have the following code:
<footer className={classes.footer}>
that I need to add some Tailwind classes to also.
<footer className={classes.footer} min-h-screen pb-25 relative>
... which JSX won't allow. Couldn't seem to find this answer via Google, anyone know how to add computed values and string values?
Help is on the way! To mark it as solved, use the /solve command. In the meantime, here are some existing threads that may help you:
@valid jolt did you try className={`${classes.footer} min-h-screen pb-25 relative`} ?