File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
packages/plugin-rsc/examples/basic/src/routes/assets Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,12 @@ export function TestAssetsClient() {
77 return (
88 < div style = { { display : 'flex' , gap : '0.5rem' , alignItems : 'center' } } >
99 < span > test-assets-client</ span >
10- < img src = { svg } data-testid = "test-assets-client-js" width = "20" />
11- { /* TODO? */ }
10+ < img
11+ src = { svg }
12+ data-testid = "test-assets-client-js"
13+ width = "20"
14+ height = "20"
15+ />
1216 < span className = "test-assets-client-css" />
1317 </ div >
1418 )
Original file line number Diff line number Diff line change @@ -7,7 +7,12 @@ export function TestAssetsServer() {
77 < >
88 < div style = { { display : 'flex' , gap : '0.5rem' , alignItems : 'center' } } >
99 < span > test-assets-server</ span >
10- < img src = { svg } data-testid = "test-assets-server-js" width = "20" />
10+ < img
11+ src = { svg }
12+ data-testid = "test-assets-server-js"
13+ width = "20"
14+ height = "20"
15+ />
1116 < span className = "test-assets-server-css" />
1217 </ div >
1318 < TestAssetsClient />
You can’t perform that action at this time.
0 commit comments