Skip to content

Commit 6b93f3d

Browse files
Add CustomTooltip component to the sistent components page
Signed-off-by: Vidit Kushwaha <[email protected]>
1 parent e5e04f1 commit 6b93f3d

File tree

8 files changed

+787
-2
lines changed

8 files changed

+787
-2
lines changed

src/components/SistentNavigation/content.js

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,20 @@ export const content = [
8787
id: 23,
8888
link: "/projects/sistent/components/text-field/code",
8989
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+
},
91106
];
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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;

0 commit comments

Comments
 (0)