@rileybathurst/paddle 0.0.32 → 0.0.33
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,10 +1,10 @@
|
|
|
1
1
|
import * as React from "react"
|
|
2
|
-
import PaddleLocationCard from "./PaddleLocationCard";
|
|
2
|
+
import { PaddleLocationCard } from "./PaddleLocationCard";
|
|
3
3
|
import type { LocationCardTypes } from "./types/location-card-types";
|
|
4
4
|
|
|
5
5
|
interface LocationDeckTypes {
|
|
6
6
|
background?: string;
|
|
7
|
-
nodes
|
|
7
|
+
nodes: LocationCardTypes[];
|
|
8
8
|
}
|
|
9
9
|
export function PaddleLocationDeck({ nodes, background }: LocationDeckTypes) {
|
|
10
10
|
return (
|