next.js/test/integration/api-support/pages/api/blog/index.js
index.js8 lines192 B
export default ({ query, method }, res) => {
  if (method === 'POST') {
    res.status(200).json([{ title: query.title }])
  } else {
    res.status(200).json([{ title: 'Cool Post!' }])
  }
}
Quest for Codev2.0.0
/
SIGN IN