#multiple classNames?

3 messages · Page 1 of 1 (latest)

valid jolt
#

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?

violet plankBOT
tribal pilot
#

@valid jolt did you try className={`${classes.footer} min-h-screen pb-25 relative`} ?