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