Home  Tech   How to save ...

How to save data in mongodb using server actions in nextjs 13

Please follow below steps to save data in mongo db using server actions

  async function save(data) {
    "use server";
    await saveToMongoDB({ data });
  }
Published on: Jun 06, 2023, 01:05 AM  
 

Comments

Add your comment