Next/props

pages/index.js
Head
  page="index"
  number={1}
  array={["normal, hard"]}
  obj={{ part: 1, page: "index"}}
  boolean={false}
  onClick={() => alert("click")}
>
  childrenだよ!!
/Head>
	
components/Head.js
  div>
    {props.page}
    {props.children}
  /div>
  button onClick={props.onClick}>
    action
  /button>