Storage.tsx11 lines · main
| 1 | import ContentSnippet from '../ContentSnippet' |
| 2 | import { DOCS_CONTENT } from '../ProjectAPIDocs.constants' |
| 3 | import type { ContentProps } from './Content.types' |
| 4 | |
| 5 | export const Storage = ({ language }: ContentProps) => { |
| 6 | return ( |
| 7 | <> |
| 8 | <ContentSnippet selectedLanguage={language} snippet={DOCS_CONTENT.storage} /> |
| 9 | </> |
| 10 | ) |
| 11 | } |