@rileybathurst/paddle 0.0.99 → 0.0.100
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
|
@@ -127,6 +127,11 @@ function Content({ svg, name, address, description, opening_time, closing_time,
|
|
|
127
127
|
|
|
128
128
|
export function PaddleLocationCard({ svg, name, link, address, description, opening_time, closing_time, background, streetAddress, addressLocality, addressRegion, postalCode, commonName, season_start, season_end }: LocationCardTypes) {
|
|
129
129
|
|
|
130
|
+
Object.entries({ svg, name, link, address, description, opening_time, closing_time, background, streetAddress, addressLocality, addressRegion, postalCode, commonName, season_start, season_end }).map(([key, value]) => {
|
|
131
|
+
console.log(key, value);
|
|
132
|
+
}
|
|
133
|
+
);
|
|
134
|
+
|
|
130
135
|
console.log(`PaddleLocationCard season_start ${season_start}`);
|
|
131
136
|
|
|
132
137
|
if (link.includes('http')) {
|