SYNC-HP用のサンプル
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

26 行
577B

  1. import React, { FC } from "react";
  2. import { fetchGuitars } from "../lib/strapi";
  3. import { GetServerSideProps } from "next";
  4. import { Guitar, GuitarResponse } from "../type/guitars";
  5. const Ssr: FC<GuitarResponse> = ({ guitars }) => {
  6. return (
  7. <div>
  8. {guitars.map((guitar: Guitar) => {
  9. return <div key={guitar.id}>{guitar.attributes.name}</div>;
  10. })}
  11. </div>
  12. );
  13. };
  14. export const getServerSideProps: GetServerSideProps = async () => {
  15. const guitars = await fetchGuitars();
  16. return {
  17. props: {
  18. guitars,
  19. },
  20. };
  21. };
  22. export default Ssr;