@rileybathurst/paddle 0.0.26 → 0.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rileybathurst/paddle",
3
3
  "private": false,
4
- "version": "0.0.26",
4
+ "version": "0.0.27",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -7,7 +7,7 @@ interface LocationDeckTypes {
7
7
  nodes?: LocationCardTypes[];
8
8
  }
9
9
 
10
- function LocationDeck({ background, nodes }: LocationDeckTypes) {
10
+ function PaddleLocationDeck({ background, nodes }: LocationDeckTypes) {
11
11
  if (!nodes) return null;
12
12
  return (
13
13
  <section className="location-deck">
@@ -22,4 +22,4 @@ function LocationDeck({ background, nodes }: LocationDeckTypes) {
22
22
  )
23
23
  }
24
24
 
25
- export default LocationDeck
25
+ export default PaddleLocationDeck