diff --git a/src/components/common/PropertyList.tsx b/src/components/common/PropertyList.tsx new file mode 100644 index 0000000..96b37c7 --- /dev/null +++ b/src/components/common/PropertyList.tsx @@ -0,0 +1,34 @@ +import React, { FunctionComponent, ReactNode } from "react"; +import Property from "@/components/common/Property"; + +const PropertyListItem: FunctionComponent<{ + title: string; + children: string; +}> = ({ title, children }) => { + return ( +