Skip to content

Commit 2c34417

Browse files
chore: adds use client directive to the top of client components (#18)
1 parent c317f39 commit 2c34417

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/Cell/index.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use client'
2+
13
import React, {
24
createContext,
35
forwardRef,

src/Grid/index.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use client'
2+
13
import React, {
24
useContext,
35
createContext,

src/Settings/index.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use client'
2+
13
import React, { createContext, useContext } from 'react';
24
import getColGap from './getColGap';
35
import { Settings, SettingsProviderProps } from './types';

0 commit comments

Comments
 (0)