Skip to content

Commit 9b4be60

Browse files
suu3sukyungbyun
andauthored
docs: fix filename in the code (#1316)
Co-authored-by: suu3 <[email protected]>
1 parent ec33c1b commit 9b4be60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/docs/overview/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ A stylesheet can be made by adding a `.css.ts` file into your project.
3232
For example:
3333

3434
```ts compiled
35-
// app.css.ts
35+
// styles.css.ts
3636
import { style } from '@vanilla-extract/css';
3737

3838
export const container = style({
@@ -53,7 +53,7 @@ By importing the style we receive the scoped class name that was generated and w
5353

5454
```ts compiled
5555
// app.ts
56-
import { container } from './app.css.ts';
56+
import { container } from './styles.css.ts';
5757

5858
document.write(`
5959
<section class="${container}">

0 commit comments

Comments
 (0)