Skip to content
This repository was archived by the owner on Sep 25, 2024. It is now read-only.

Commit 3992fcb

Browse files
committed
feat(test): add Output.svelte
1 parent ad7ac27 commit 3992fcb

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

tests/test1/Output.svelte

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<script>
2+
const s = {
3+
error: 's-Lwza_error',
4+
success: 's-Lwza_success',
5+
};
6+
</script>
7+
8+
<div class={s.error}>
9+
hello
10+
</div>
11+
12+
<div class={s.success}>
13+
world
14+
</div>
15+
16+
<style>
17+
18+
/* /Users/ryoppippi/ghq/github.com/ryoppippi/svelte-preprocess-css-modules/tests/assets/class.module.css */
19+
.s-Lwza_error {
20+
color: red;
21+
}
22+
23+
.s-Lwza_success {
24+
color: green;
25+
}
26+
27+
</style>

0 commit comments

Comments
 (0)