@rileybathurst/paddle 0.0.30 → 0.0.31

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.30",
4
+ "version": "0.0.31",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -1,18 +1,23 @@
1
1
  import * as React from "react"
2
- import PaddleLocationCard from "./PaddleLocationCard";
3
- import type { LocationCardTypes } from "./types/location-card-types";
2
+ // import PaddleLocationCard from "./PaddleLocationCard";
3
+ // import type { LocationCardTypes } from "./types/location-card-types";
4
4
 
5
- interface LocationDeckTypes {
5
+ /* interface LocationDeckTypes {
6
6
  background?: string;
7
7
  nodes?: LocationCardTypes[];
8
- }
9
- export const PaddleLocationDeck = ({ background, nodes }: LocationDeckTypes) =>
10
- <section className="location-deck">
11
- {nodes.map((location: LocationCardTypes) => (
8
+ } */
9
+ export function PaddleLocationDeck() {
10
+ return (
11
+ <section className="location-deck">
12
+ {/* {nodes.map((location: LocationCardTypes) => (
12
13
  <PaddleLocationCard
13
14
  key={location.id}
14
15
  {...location}
15
16
  background={background}
16
17
  />
17
- ))}
18
- </section>
18
+ ))} */}
19
+
20
+ meow
21
+ </section>
22
+ )
23
+ }