astro-integration-pocketbase
Version:
An Astro integration to support developers working with astro-loader-pocketbase.
21 lines (19 loc) • 429 B
text/typescript
/**
* Creates a placeholder card.
*/
export function createPlaceholder(): string {
return /* HTML */ `
<style>
#placeholder div {
display: flex;
align-items: center;
justify-content: center;
}
</style>
<astro-dev-toolbar-card id="placeholder">
<div>
<span> Here you will see the raw content of an entity </span>
</div>
</astro-dev-toolbar-card>
`;
}