mirror of
https://github.com/factorgroup/nightmarket.git
synced 2026-04-17 03:00:50 -04:00
21 lines
318 B
TypeScript
21 lines
318 B
TypeScript
import { h } from "preact";
|
|
import { useState } from "preact/hooks";
|
|
const styles = {
|
|
artifacts: {
|
|
display: "grid",
|
|
gridRowGap: "4px",
|
|
},
|
|
empty: {
|
|
color: "#838383",
|
|
},
|
|
};
|
|
|
|
export function MyListings({ listings = [] }) {
|
|
return (
|
|
<div>
|
|
This is the MyListings View
|
|
<div>{listings}</div>
|
|
</div>
|
|
|
|
)
|
|
} |