File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,4 +21,5 @@ export const frameworkList = [
2121 { name : "Spring" , link : "/frameworks/spring" } ,
2222 { name : "CherryPy" , link : "/frameworks/cherrypy" } ,
2323 { name : "D3.js" , link : "/frameworks/d3js" } ,
24+ { name : "Solid.js" , link : "/frameworks/solidjs" }
2425] ;
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import SpringFramework from "../../components/frameworkComponents/SpringFramewor
2323import TailwindCSSFramework from "../../components/frameworkComponents/TailwindCSSFramework" ;
2424import CherrypyFramework from "../../components/frameworkComponents/CherrypyFramework" ;
2525import D3JSLibrary from "../../components/frameworkComponents/D3JS" ;
26+ import SolidJSFramework from "../../components/frameworkComponents/SolidJSFramework" ;
2627
2728const FrameworkPage = ( ) => {
2829 const router = useRouter ( ) ;
@@ -74,6 +75,8 @@ const FrameworkPage = () => {
7475 return < CherrypyFramework /> ;
7576 case "d3js" :
7677 return < D3JSLibrary /> ;
78+ case "solidjs" :
79+ return < SolidJSFramework />
7780 default :
7881 return < FrameworkNotSupported /> ;
7982 }
You can’t perform that action at this time.
0 commit comments