Skip to content

Commit

Permalink
fix : use client 적용 컴포넌트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-Dongwook committed Oct 26, 2024
1 parent 1f4bc32 commit 962afb4
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/atoms/Avatar.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client';
import React from 'react';
import Image from 'next/image';

Expand Down
1 change: 1 addition & 0 deletions src/components/atoms/Input.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client';
import React from 'react';

interface InputProps {
Expand Down
1 change: 1 addition & 0 deletions src/components/atoms/Select.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client';
import React from 'react';

interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
Expand Down
1 change: 1 addition & 0 deletions src/components/containers/ChatContainer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
'use client';
1 change: 1 addition & 0 deletions src/components/containers/DashboardContainer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
'use client';
1 change: 1 addition & 0 deletions src/components/containers/UserProfileContainer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client';
import React from 'react';
import { Spinner } from '@/components/atoms/Spinner';
import { UserProfileLayout } from '@/components/organisms/UserProfileLayout';
Expand Down
1 change: 1 addition & 0 deletions src/components/molecules/UserCard.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client';
import React from 'react';
import { Timestamp } from 'firebase/firestore';
import { Avatar } from '@/components/atoms/Avatar';
Expand Down
1 change: 1 addition & 0 deletions src/components/organisms/AuthLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client';
import React from 'react';
import { AuthContainer } from '@/components/containers/AuthContainer';

Expand Down
2 changes: 2 additions & 0 deletions src/components/organisms/ChatLayout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
'use client';
import React, { useState } from 'react';
1 change: 1 addition & 0 deletions src/components/organisms/DashboardLayout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
'use client';
1 change: 1 addition & 0 deletions src/components/organisms/UserProfileLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client';
import React, { useState } from 'react';
import { Button } from '@/components/atoms/Button';
import { Input } from '@/components/atoms/Input';
Expand Down

0 comments on commit 962afb4

Please sign in to comment.