File size: 418 Bytes
cce8120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"use client";

import useExtensions from "../../hooks/useExtensions";

export default function ExtensionsWorkspace(){

const {loading}=useExtensions();

return(
<div className="w-full h-full bg-zinc-950 text-white">

<div className="border-b border-zinc-800 p-4 text-xl font-semibold">
Extensions Marketplace
</div>

<div className="p-4">
{loading ? "Loading..." : "Production Extension Manager"}
</div>

</div>
);

}