8 lines
183 B
TypeScript
8 lines
183 B
TypeScript
import Layout from "@/components/Layout";
|
|
import Showcases from "@/components/Showcases";
|
|
|
|
export default function ShowcasesList() {
|
|
return (
|
|
<Layout><Showcases/></Layout>
|
|
)
|
|
} |