16 lines
208 B
TypeScript
16 lines
208 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
|
||
|
export default function Extensions() {
|
||
|
return (
|
||
|
<div className="woocommerce-marketplace__content">
|
||
|
<h1>Extensions</h1>
|
||
|
</div>
|
||
|
);
|
||
|
}
|