Skip to content

Commit

Permalink
Merge pull request #21 from dusanstanojeviccs/readme-update
Browse files Browse the repository at this point in the history
Updated model -> modal in docs
  • Loading branch information
miyushan authored Nov 18, 2024
2 parents b3ac00b + d2ee480 commit 1284013
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ View Demo [here](https://mui-daterange-picker-plus-playground.vercel.app/demo)
- [Features](#features)
- [Installation](#installation)
- [Usage with Examples](#usage-with-examples)
- [1. Picker Model (Basic)](#1-picker-model-basic)
- [1. Picker Modal (Basic)](#1-picker-modal-basic)
- [2. Picker Base (Basic)](#2-picker-base-basic)
- [3. Picker Model (Advanced)](#3-picker-model-advanced)
- [3. Picker Modal (Advanced)](#3-picker-modal-advanced)
- [4. Picker Base (Advanced)](#4-picker-base-advanced)
- [Customization using Props](#customization-using-props)
- [PickerProps](#pickerprops)
Expand Down Expand Up @@ -54,7 +54,7 @@ npm install mui-daterange-picker-plus

## Usage with Examples

### 1. Picker Model (Basic)
### 1. Picker Modal (Basic)

```jsx
import { useState } from "react";
Expand Down Expand Up @@ -91,7 +91,7 @@ export default function YourComponent() {
return (
<>
<Button variant="contained" onClick={handleClick}>
View Picker Model
View Picker Modal
</Button>
<PickerModal
onChange={(range: DateRange) => handleSetDateRangeOnChange(range)}
Expand Down Expand Up @@ -146,7 +146,7 @@ export default function YourComponent() {
}
```

### 3. Picker Model (Advanced)
### 3. Picker Modal (Advanced)

```jsx
import { useState } from "react";
Expand Down Expand Up @@ -185,7 +185,7 @@ export default function YourComponent() {
return (
<>
<Button variant="contained" onClick={handleClick}>
View Picker Model
View Picker Modal
</Button>
<PickerModal
hideOutsideMonthDays={false}
Expand Down

0 comments on commit 1284013

Please sign in to comment.