-
Hi! This is working fine except that the tailwind styles aren't applying properly and I can't figure out how to adjust the configs to make this happen. I changed my import React from 'react'
import { HomeScreen } from 'app/features/home/screen'
import { WebOnlyComponent } from '../components/WebOnlyComponent'
export const NewHomeScreen = () => {
return (
<>
<WebOnlyComponent />
<HomeScreen />
</>
)
}
export default NewHomeScreen Any thoughts on why this might be? Is this a bad pattern for Solito? Should we be writing all our components in |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I assume your tailwind config isn’t pointing to the correct directories? |
Beta Was this translation helpful? Give feedback.
-
Hey facing the same issue, can you share which config worked for you? |
Beta Was this translation helpful? Give feedback.
I assume your tailwind config isn’t pointing to the correct directories?