docs.sheetjs.com/docz/docs/03-demos/19-cloudata/index.md

21 lines
750 B
Markdown
Raw Normal View History

2023-02-15 06:00:28 +00:00
---
title: Cloud Data Platforms
pagination_prev: demos/static/index
pagination_next: demos/cli
---
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
Cloud Data Platforms are popular storage media for structured data, typically
offering APIs for programmatic data ingress and egress. Demos:
<ul>{useCurrentSidebarCategory().items.map(item => {
const listyle = (item.customProps?.icon) ? {
listStyleImage: `url("${item.customProps.icon}")`
} : {};
return (<li style={listyle} {...(item.customProps?.class ? {className: item.customProps.class}: {})}>
<a href={item.href}>{item.label}</a>{item.customProps?.summary && (" - " + item.customProps.summary)}
</li>);
})}</ul>