Skip to content

Commit

Permalink
Merge pull request #6056 from Vidit-Kushwaha/add/buttonGroup
Browse files Browse the repository at this point in the history
Add ButtonGroup component to the sistent components page
  • Loading branch information
sudhanshutech authored Nov 7, 2024
2 parents 8c8352e + f5aa692 commit 3b6c55d
Show file tree
Hide file tree
Showing 8 changed files with 832 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/components/SistentNavigation/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,20 @@ export const content = [
id: 23,
link: "/projects/sistent/components/text-field/code",
text: "Text Field",
}
},
{
id: 24,
link: "/projects/sistent/components/button-group",
text: "Button Group",
},
{
id: 25,
link: "/projects/sistent/components/button-group/guidance",
text: "Button Group",
},
{
id: 26,
link: "/projects/sistent/components/button-group/code",
text: "Button Group",
},
];
8 changes: 8 additions & 0 deletions src/pages/projects/sistent/components/button-group/code.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import ButtonGroupCode from "../../../../../sections/Projects/Sistent/components/button-group/code";

const ButtonGroupCodePage = () => {
return <ButtonGroupCode />;
};

export default ButtonGroupCodePage;
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import ButtonGroupGuidance from "../../../../../sections/Projects/Sistent/components/button-group/guidance";

const ButtonGuidancePage = () => {
return <ButtonGroupGuidance />;
};

export default ButtonGuidancePage;
8 changes: 8 additions & 0 deletions src/pages/projects/sistent/components/button-group/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import SistentButtonGroup from "../../../../../sections/Projects/Sistent/components/button-group";

const SistentButtonGroupPage = () => {
return <SistentButtonGroup />;
};

export default SistentButtonGroupPage;
Loading

0 comments on commit 3b6c55d

Please sign in to comment.