19 lines
498 B
TypeScript
19 lines
498 B
TypeScript
import React from 'react';
|
|
import DescriptionIcon from '@mui/icons-material/Description';
|
|
import { SectionCard } from '../SectionCard/SectionCard';
|
|
|
|
export const Documentation = () => {
|
|
return (
|
|
<SectionCard
|
|
title="Documentation"
|
|
icon={<DescriptionIcon fontSize="small" />}
|
|
items={[
|
|
{ title: 'Provider Integration Overview' },
|
|
{ title: 'APIs Introduction' },
|
|
{ title: 'Documentation Overview' },
|
|
{ title: 'How-Tos' },
|
|
]}
|
|
/>
|
|
);
|
|
};
|