fix: client component rendering

This commit is contained in:
sriram veeraghanta 2024-06-10 13:36:10 +05:30
parent 5d807db69e
commit a04fb07406
129 changed files with 944 additions and 1652 deletions

View file

@ -1,3 +1,5 @@
"use client";
import React, { useState } from "react";
import { useParams } from "next/navigation";
// types

View file

@ -1,3 +1,5 @@
"use client";
import React, { FC, useState } from "react";
import { useParams, useRouter } from "next/navigation";
// ui

View file

@ -1,3 +1,5 @@
"use client";
import React from "react";
import Image from "next/image";
// ui

View file

@ -1,3 +1,5 @@
"use client";
import { ChevronDown, ChevronUp } from "lucide-react";
import { Disclosure, Transition } from "@headlessui/react";
import { Button } from "@plane/ui";

View file

@ -1,3 +1,5 @@
"use client";
import React, { FC, useEffect, useState } from "react";
import { observer } from "mobx-react";
import { Controller, useForm } from "react-hook-form";

View file

@ -1,3 +1,5 @@
"use client";
import { Input } from "@plane/ui";
type Props = {

View file

@ -1,3 +1,5 @@
"use client";
import { useState, FC } from "react";
import { observer } from "mobx-react";
import { useParams } from "next/navigation";

View file

@ -1,3 +1,5 @@
"use client";
import { Control, Controller } from "react-hook-form";
import { IWebhook } from "@plane/types";
// ui

View file

@ -1,3 +1,5 @@
"use client";
import { FC } from "react";
import Link from "next/link";
import { useParams } from "next/navigation";