Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 19 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import module_css from "../styles/is.module.css" |
||
2 | import module_scss from "../styles/is.module.scss" |
||
3 | import module_less from "../styles/is.module.less" |
||
4 | import module_stylus from "../styles/is.module.styl" |
||
5 | |||
6 | console.log( |
||
7 | //@ts-expect-error Property 'NoSuchClass' does not exist |
||
8 | module_stylus.NoSuchClass |
||
9 | ) |
||
10 | |||
11 | export default function Page() { |
||
12 | return <main> |
||
13 | <div className={module_css.css_module}>css</div> |
||
14 | <div className={module_scss.scss_module}>scss</div> |
||
15 | <div className={module_less.less_module}>less</div> |
||
16 | <div className={module_stylus.stylus_module}>stylus</div> |
||
17 | </main> |
||
18 | } |
||
19 |