9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import { TextCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function Marketplace() {
|
|
return (
|
|
<ViewWrapper>
|
|
<TextCustom>Marketplace</TextCustom>
|
|
</ViewWrapper>
|
|
);
|
|
} |