Open jonrrivera opened 1 year ago
I'm having the same issue here; it looks like the install is not actually generating any styled
components, and the Tailwind helper classes are still being used.
I think components are there, but not visible because of the CSS. I managed to display it by adding a class to the "View" component.
page.tsx
<View orbit className='viewSize'>
<Suspense fallback={null}>
<Dog scale={2} position={[0, -1.6, 0]} rotation={[0.0, -0.3, 0]} />
<Common color={'lightpink'} />
</Suspense>
</View>
global.css
.viewSize {
height: 40vh;
width: 80vw;
}
when installing
yarn create r3f-app next my-3d-app styled -ts
and runningyarn dev
I don't see any of the r3f components rendering or any styled systems components being applied. Am I doing something wrong?