File tree Expand file tree Collapse file tree 8 files changed +787
-2
lines changed
components/SistentNavigation
pages/projects/sistent/components/customTooltip
sections/Projects/Sistent/components Expand file tree Collapse file tree 8 files changed +787
-2
lines changed Original file line number Diff line number Diff line change @@ -87,5 +87,20 @@ export const content = [
87
87
id : 23 ,
88
88
link : "/projects/sistent/components/text-field/code" ,
89
89
text : "Text Field" ,
90
- }
90
+ } ,
91
+ {
92
+ id : 24 ,
93
+ link : "/projects/sistent/components/customTooltip" ,
94
+ text : "Custom Tooltip" ,
95
+ } ,
96
+ {
97
+ id : 25 ,
98
+ link : "/projects/sistent/components/customTooltip/guidance" ,
99
+ text : "Custom Tooltip" ,
100
+ } ,
101
+ {
102
+ id : 26 ,
103
+ link : "/projects/sistent/components/customTooltip/code" ,
104
+ text : "Custom Tooltip" ,
105
+ } ,
91
106
] ;
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import CustomTooltipCode from "../../../../../sections/Projects/Sistent/components/customTooltip/code" ;
3
+
4
+ const CustomTooltipCodePage = ( ) => {
5
+ return < CustomTooltipCode /> ;
6
+ } ;
7
+
8
+ export default CustomTooltipCodePage ;
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import CustomTooltipGuidance from "../../../../../sections/Projects/Sistent/components/customTooltip/guidance" ;
3
+
4
+ const CustomTooltipGuidancePage = ( ) => {
5
+ return < CustomTooltipGuidance /> ;
6
+ } ;
7
+
8
+ export default CustomTooltipGuidancePage ;
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import SistentCustomTooltip from "../../../../../sections/Projects/Sistent/components/customTooltip" ;
3
+
4
+ const SistentCustomTooltipPage = ( ) => {
5
+ return < SistentCustomTooltip /> ;
6
+ } ;
7
+
8
+ export default SistentCustomTooltipPage ;
You can’t perform that action at this time.
0 commit comments