File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
examples/solid/start-bun/src/routes Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,7 @@ function Home() {
2929 < h1 class = "text-2xl mb-4" > Start API Request Demo - Names List</ h1 >
3030 < ul class = "mb-4 space-y-2" >
3131 { names ( ) . map ( ( name ) => (
32- < li
33- class = "bg-white/10 border border-white/20 rounded-lg p-3 backdrop-blur-sm shadow-md"
34- >
32+ < li class = "bg-white/10 border border-white/20 rounded-lg p-3 backdrop-blur-sm shadow-md" >
3533 < span class = "text-lg text-white" > { name } </ span >
3634 </ li >
3735 ) ) }
Original file line number Diff line number Diff line change @@ -62,9 +62,7 @@ function Home() {
6262 < h1 class = "text-2xl mb-4" > Start Server Functions - Todo Example</ h1 >
6363 < ul class = "mb-4 space-y-2" >
6464 { todos ( ) . map ( ( t : any ) => (
65- < li
66- class = "bg-white/10 border border-white/20 rounded-lg p-3 backdrop-blur-sm shadow-md"
67- >
65+ < li class = "bg-white/10 border border-white/20 rounded-lg p-3 backdrop-blur-sm shadow-md" >
6866 < span class = "text-lg text-white" > { t . name } </ span >
6967 </ li >
7068 ) ) }
You can’t perform that action at this time.
0 commit comments