Skip to content

Commit c53e940

Browse files
committed
✅ package-lock changes
2 parents 30fde41 + b74fcc7 commit c53e940

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import SkeletonContent from 'react-native-skeleton-content';
4141
- **Custom Layout** : You provide a prop `layout` to the component specifying the size of the bones (see the [Examples](#examples) section below). Herunder is the example with a custom layout. A key prop for each child is optionnal but highly recommended.
4242

4343
```jsx
44-
export default function Placehoder() {
44+
export default function Placeholder() {
4545
return (
4646
<SkeletonContent
4747
containerStyle={{ flex: 1, width: 300 }}
@@ -61,7 +61,7 @@ export default function Placehoder() {
6161
3. Then simply sync the prop `isLoading` to your state to show/hide the SkeletonContent when the assets/data are available to the user.
6262

6363
```jsx
64-
export default function Placehoder () {
64+
export default function Placeholder () {
6565
const [loading, setLoading] = useState(true);
6666
return (
6767
<SkeletonContent
@@ -99,7 +99,7 @@ See the playground section to experiment :
9999
</p>
100100

101101
```javascript
102-
export default function Placehoder () {
102+
export default function Placeholder () {
103103
return (
104104
<SkeletonContent
105105
containerStyle={{flex: 1, width: 300}}
@@ -118,7 +118,7 @@ export default function Placehoder () {
118118
</p>
119119

120120
```jsx
121-
export default function Placehoder () {
121+
export default function Placeholder () {
122122
return (
123123
<SkeletonContent
124124
containerStyle={{flex: 1, width: 300}}
@@ -139,7 +139,7 @@ export default function Placehoder () {
139139
</p>
140140

141141
```jsx
142-
export default function Placehoder () {
142+
export default function Placeholder () {
143143
return (
144144
<SkeletonContent
145145
containerStyle={{flex: 1, width: 300}}

0 commit comments

Comments
 (0)