-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6056 from Vidit-Kushwaha/add/buttonGroup
Add ButtonGroup component to the sistent components page
- Loading branch information
Showing
8 changed files
with
832 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
8 changes: 8 additions & 0 deletions
8
src/pages/projects/sistent/components/button-group/guidance.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Oops, something went wrong.