Skip to content

Commit b02fcc5

Browse files
committed
test: update test route with refined export names and additional object export
1 parent 7f60beb commit b02fcc5

1 file changed

Lines changed: 13 additions & 7 deletions

File tree

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1-
export function Component() {
1+
export function TextRenderTestComponent() {
22
return <>(´。• ᵕ •。`) ♡</>;
33
}
44

5-
export function Component2() {
6-
return <>♡(˃͈ દ ˂͈ ༶ )</>;
5+
export function VariableImportTestComponent() {
6+
return <>{testObjectExport.stringValue}</>;
77
}
88

9+
export const testStringExport = "♡(˃͈ દ ˂͈ ༶ )";
10+
11+
export const testObjectExport = {
12+
stringValue: testStringExport,
13+
};
14+
915
export default function () {
10-
return <div>
11-
<Component/>
12-
<Component2/>
13-
</div>;
16+
return <>
17+
<TextRenderTestComponent/>
18+
<VariableImportTestComponent/>
19+
</>;
1420
}

0 commit comments

Comments
 (0)