forked from sheetjs/docs.sheetjs.com
		
	
		
			
	
	
		
			21 lines
		
	
	
		
			750 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
		
			750 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
|  | --- | ||
|  | 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> |