mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 07:34:11 +00:00
32 lines
515 B
Plaintext
32 lines
515 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`transform rsc 1`] = `
|
|
"import * as React from "react"
|
|
import { Foo } from "bar"
|
|
"
|
|
`;
|
|
|
|
exports[`transform rsc 2`] = `
|
|
""use client"
|
|
|
|
import * as React from "react"
|
|
import { Foo } from "bar"
|
|
"
|
|
`;
|
|
|
|
exports[`transform rsc 3`] = `
|
|
" import * as React from "react"
|
|
import { Foo } from "bar"
|
|
"
|
|
`;
|
|
|
|
exports[`transform rsc 4`] = `
|
|
""use foo"
|
|
|
|
import * as React from "react"
|
|
import { Foo } from "bar"
|
|
|
|
"use client"
|
|
"
|
|
`;
|