docs.sheetjs.com/docz/docs/03-demos/44-hosting/index.md

21 lines
753 B
Markdown
Raw Normal View History

2023-02-11 07:13:53 +00:00
---
title: File Hosting Services
pagination_prev: demos/ml
pagination_next: solutions/input
---
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
File hosting services provide simple solutions for storing data, synchronizing
files across devices, and sharing with specific users or customers.
<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>