Introduction.tsx 516 B

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