Hi,
Congratulations for this project! It's amazing! It's the coolest project I found this year!
I wonder if it's already possible to import Scss files similar to React?
App.tsx
import styles from './App.module.scss'
export default function App() {
<p>This is a paragraph.</p>
<p class={styles.myParagraph}>Another paragraph</p>
}
App.module.scss
.myParagraph{
color:blue
}
Or to use styled-components like this:
import styled from "styled-components";
const Paragraph = styled.p`
font-size: 15px;
text-align: center;
`;
Hi,
Congratulations for this project! It's amazing! It's the coolest project I found this year!
I wonder if it's already possible to import Scss files similar to React?
App.tsx
App.module.scss
Or to use styled-components like this: