Skip to content

Commit

Permalink
docs: fixed incorrect URLs input-fields.mdx (#2391)
Browse files Browse the repository at this point in the history
  • Loading branch information
1eeminhyeong authored Aug 22, 2024
1 parent bb8eb92 commit 095d40c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion website/docs/guides/input-fields.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Browsers offer [native date pickers](https://developer.mozilla.org/en-US/docs/We

### Input with Inline Calendar

See also the [full source code](https://github.com/gpbl/react-day-picker/blob/main/website/examples/Input.tsx) and [the unit tests](https://github.com/gpbl/react-day-picker/blob/main/website/examples/Input.test.tsx) for this example.
See also the [full source code](https://github.com/gpbl/react-day-picker/blob/main/examples/Input.tsx) and [the unit tests](https://github.com/gpbl/react-day-picker/blob/main/examples/Input.test.tsx) for this example.

<BrowserWindow>
<Examples.Input />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ These examples showcase different approaches for integrating DayPicker with inpu

This example demonstrates how to integrate an input field with an inline DayPicker calendar. The input field allows users to type a date, and the calendar updates the selected date based on the input value.

See also the [full source code](https://github.com/gpbl/react-day-picker/blob/main/website/examples/Input.tsx) and [the unit tests](https://github.com/gpbl/react-day-picker/blob/main/website/examples/Input.test.tsx) for this example.
See also the [full source code](https://github.com/gpbl/react-day-picker/blob/main/examples/Input.tsx) and [the unit tests](https://github.com/gpbl/react-day-picker/blob/main/examples/Input.test.tsx) for this example.

<BrowserWindow>
<ExamplesV8.Input />
Expand Down Expand Up @@ -201,7 +201,8 @@ export function Dialog() {
value={inputValue}
placeholder={"MM/dd/yyyy"}
onChange={handleInputChange}
/> <button
/>{" "}
<button
style={{ fontSize: "inherit" }}
onClick={toggleDialog}
aria-controls="dialog"
Expand Down

0 comments on commit 095d40c

Please sign in to comment.