Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TextField component to the sistent components page #5948 #6008

Merged
merged 3 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/components/SistentNavigation/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,19 @@ export const content = [
link: "/projects/sistent/components/popper/code",
text: "Popper",
},
{
id: 21,
link: "/projects/sistent/components/text-field",
text: "Text Field",
},
{
id: 22,
link: "/projects/sistent/components/text-field/guidance",
text: "Text Field",
},
{
id: 23,
link: "/projects/sistent/components/text-field/code",
text: "Text Field",
}
];
8 changes: 8 additions & 0 deletions src/pages/projects/sistent/components/text-field/code.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import { TextFieldCode } from "../../../../../sections/Projects/Sistent/components/text-field/code";

const TextFieldCodePage = () => {
return <TextFieldCode />;
};

export default TextFieldCodePage;
8 changes: 8 additions & 0 deletions src/pages/projects/sistent/components/text-field/guidance.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from "react";
import { TextFieldGuidance } from "../../../../../sections/Projects/Sistent/components/text-field/guidance";

const TextFieldGuidancePage = () => {
return <TextFieldGuidance />;
};

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

const SistentTextFieldPage = () => {
return <SistentTextField />;
};

export default SistentTextFieldPage;
7 changes: 7 additions & 0 deletions src/sections/Projects/Sistent/components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ const componentsData = [
"A popper is a tooltip that appears when a user interacts with an element.",
url: "/projects/sistent/components/popper",
},
{
id: 6,
name: "Text Field",
description:
"The TextField component is a versatile input field used to capture user input in forms and user interfaces.",
url: "/projects/sistent/components/text-field",
}
];

const SistentComponents = () => {
Expand Down
Loading