Skip to content

Commit

Permalink
file names updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetemrekilinc committed Oct 31, 2023
1 parent 9214f13 commit 47e46c6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/components/Main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ const Main = () => {
<DialogTitle>
<ExampleUsageWrapper
header="Edit ComfortReactProvider Props"
codeUrl="components/Main.js"
codeUrl="components/Main.jsx"
wrapperClassName="modalHeaderWrapper"
/>
</DialogTitle>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const ComponentShrinkableTransferList = () => {
return (
<ExampleUsageWrapper
header="ShrinkableTransferList"
codeUrl="components/components/ComponentShrinkableTransferList.js"
codeUrl="components/components/ComponentShrinkableTransferList.jsx"
>
{shrinkElementJsx}
<Grid container spacing={2} marginTop={2}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/rules/RulePhoneNumber.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const RulePhoneNumber = () => {
});

return (
<ExampleUsageWrapper header="phoneNumber" codeUrl="components/rules/RulePhoneNumber.js">
<ExampleUsageWrapper header="phoneNumber" codeUrl="components/rules/RulePhoneNumber.jsx">
<p className="infoParagraph">
<b>phoneNumber</b> rule checks if the given value is a valid phone number.
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/rules/RuleTckn.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const RuleTckn = () => {
});

return (
<ExampleUsageWrapper header="tckn" codeUrl="components/rules/RuleTckn.js">
<ExampleUsageWrapper header="tckn" codeUrl="components/rules/RuleTckn.jsx">
<p className="infoParagraph">
<b>tckn</b> rule checks if the given value is a valid TCKN.
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/rules/RuleTime.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const RuleTime = () => {
};

return (
<ExampleUsageWrapper header="time" codeUrl="components/rules/RuleTime.js">
<ExampleUsageWrapper header="time" codeUrl="components/rules/RuleTime.jsx">
<p className="infoParagraph">
<b>time</b> rule checks if the given value is a valid time.
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/rules/RuleVkn.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const RuleVkn = () => {
});

return (
<ExampleUsageWrapper header="vkn" codeUrl="components/rules/RuleVkn.js">
<ExampleUsageWrapper header="vkn" codeUrl="components/rules/RuleVkn.jsx">
<p className="infoParagraph">
<b>vkn</b> rule checks if the given value is a valid vkn.
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/validatable-form/CustomMessage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const CustomMessage = () => {
});

return (
<ExampleUsageWrapper header="customMessage" codeUrl="components/validatable-form/CustomMessage.js">
<ExampleUsageWrapper header="customMessage" codeUrl="components/validatable-form/CustomMessage.jsx">
<p className="infoParagraph">
Validation error message of a rule can be customized by passing <b>customMessage</b> param to the rule.
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/validatable-form/UseComfortForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const UseComfortForm = () => {
});

return (
<ExampleUsageWrapper header="useComfortForm" codeUrl="components/validatable-form/UseComfortForm.js">
<ExampleUsageWrapper header="useComfortForm" codeUrl="components/validatable-form/UseComfortForm.jsx">
<p className="infoParagraph">
<b>useComfortForm</b> is a hook extended from{' '}
<a
Expand Down

0 comments on commit 47e46c6

Please sign in to comment.