WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 3b6c55d

Browse files
Merge pull request #6056 from Vidit-Kushwaha/add/buttonGroup
Add ButtonGroup component to the sistent components page
2 parents 8c8352e + f5aa692 commit 3b6c55d

File tree

8 files changed

+832
-1
lines changed

8 files changed

+832
-1
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/button-group",
94+
text: "Button Group",
95+
},
96+
{
97+
id: 25,
98+
link: "/projects/sistent/components/button-group/guidance",
99+
text: "Button Group",
100+
},
101+
{
102+
id: 26,
103+
link: "/projects/sistent/components/button-group/code",
104+
text: "Button Group",
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 ButtonGroupCode from "../../../../../sections/Projects/Sistent/components/button-group/code";
3+
4+
const ButtonGroupCodePage = () => {
5+
return <ButtonGroupCode />;
6+
};
7+
8+
export default ButtonGroupCodePage;
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 ButtonGroupGuidance from "../../../../../sections/Projects/Sistent/components/button-group/guidance";
3+
4+
const ButtonGuidancePage = () => {
5+
return <ButtonGroupGuidance />;
6+
};
7+
8+
export default ButtonGuidancePage;
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 SistentButtonGroup from "../../../../../sections/Projects/Sistent/components/button-group";
3+
4+
const SistentButtonGroupPage = () => {
5+
return <SistentButtonGroup />;
6+
};
7+
8+
export default SistentButtonGroupPage;

0 commit comments

Comments
 (0)