Introduction.tsx20 lines · main
1import { DocSection } from '../../DocSection'
2
3const Introduction = () => {
4 return (
5 <DocSection
6 title="Introduction"
7 content={
8 <>
9 <p>
10 All of your database functions are available on your API. This means you can build your
11 logic directly into the database (if you're brave enough)!
12 </p>
13 <p>The API endpoint supports POST (and in some cases GET) to execute the function.</p>
14 </>
15 }
16 />
17 )
18}
19
20export default Introduction