Skip to content

Commit

Permalink
updating client components
Browse files Browse the repository at this point in the history
  • Loading branch information
eileenmguo committed Aug 22, 2023
1 parent b9be21d commit ec0d78c
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/libs/react-ui/src/components/Accordion/Accordion.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { AccordionSection, IAccordionSectionProps } from './AccordionSection';

import React, { FC, useState } from 'react';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import {
accordionContentWrapperClass,
accordionSectionClass,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import {
iconContainer,
titleContainer,
Expand Down
2 changes: 2 additions & 0 deletions packages/libs/react-ui/src/components/Modal/Modal.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import {
background,
closeButton,
Expand Down
2 changes: 2 additions & 0 deletions packages/libs/react-ui/src/components/Modal/ModalProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Modal } from './Modal';
import { openModal } from './Modal.css';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { NavGlow } from './assets/glow';
import {
activeLinkClass,
Expand Down
2 changes: 2 additions & 0 deletions packages/libs/react-ui/src/components/NavHeader/useGlow.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { useEffect, useRef, useState } from 'react';

interface IUseGlowReturn {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { pageNavButtonClass, pageNavLabelClass } from './Pagination.css';

import { Box } from '@components/Box';
import { SystemIcon } from '@components/Icon';
import React, { FC } from 'react';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { PageNav } from './PageNav';
import { PageNum } from './PageNum';
import { paginate } from './paginate';
Expand Down
2 changes: 2 additions & 0 deletions packages/libs/react-ui/src/components/Tabs/TabsContainer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { Tab } from './Tab';
import { TabContent } from './TabContent';
import { selectorLine, tabsContainer, tabsContainerWrapper } from './Tabs.css';
Expand Down
2 changes: 2 additions & 0 deletions packages/libs/react-ui/src/components/Tree/Tree.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import { TreeItem } from '@components/Tree/TreeItems';
import React, { FC, useState } from 'react';

Expand Down
2 changes: 2 additions & 0 deletions packages/libs/react-ui/src/components/Tree/TreeItems.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

import {
treeBranchWrapperVariant,
treeTitleClass,
Expand Down

0 comments on commit ec0d78c

Please sign in to comment.