Skip to content

Commit

Permalink
change directory of shared components
Browse files Browse the repository at this point in the history
  • Loading branch information
zuies committed Sep 15, 2023
1 parent 6f942fa commit 107929d
Show file tree
Hide file tree
Showing 40 changed files with 29 additions and 29 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import TcCard from '../../shared/TcCard';
import TcText from '../../shared/TcText';
import TcIconWithTooltip from '../../shared/TcIconWithTooltip';
import TcCard from '../../../shared/TcCard';
import TcText from '../../../shared/TcText';
import TcIconWithTooltip from '../../../shared/TcIconWithTooltip';

const accountActivityMockList = [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { BiTimeFive } from 'react-icons/bi';
import TcText from '../../shared/TcText';
import TcLink from '../../shared/TcLink';
import TcText from '../../../shared/TcText';
import TcLink from '../../../shared/TcLink';

export default function TcAccountActivityHeader() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import TcCard from '../../shared/TcCard';
import TcIconWithTooltip from '../../shared/TcIconWithTooltip';
import TcText from '../../shared/TcText';
import TcCard from '../../../shared/TcCard';
import TcIconWithTooltip from '../../../shared/TcIconWithTooltip';
import TcText from '../../../shared/TcText';
const yourAccountActivityMockList = [
{
description: 'Replies',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import TcText from '../../shared/TcText';
import TcText from '../../../shared/TcText';

function TcAudienceResponseHeader() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import clsx from 'clsx';
import React from 'react';
import TcText from '../../shared/TcText';
import TcIconWithTooltip from '../../shared/TcIconWithTooltip';
import TcText from '../../../shared/TcText';
import TcIconWithTooltip from '../../../shared/TcIconWithTooltip';
import { MdOutlineInfo } from 'react-icons/md';

interface ITcEngagementAccountContentItemsProps {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import TcText from '../../shared/TcText';
import TcText from '../../../shared/TcText';
import TcEngagementAccountContentItems from './TcEngagementAccountContentItems';

interface IContentItem {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import TcText from '../../shared/TcText';
import TcText from '../../../shared/TcText';

function TcEngagementAccountsHeader() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import TcvoteFeatureHeader from './TcvoteFeatureHeader';
import TcvoteFeatureVotes from './TcvoteFeatureVotes/TcvoteFeatureVotes';
import TcButton from '../../shared/TcButton';
import TcButton from '../../../shared/TcButton';

function TcvoteFeature() {
const [nextFeature, setNextFeature] = useState<Array<boolean>>([
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import TcText from '../../shared/TcText';
import TcText from '../../../shared/TcText';

function TcAudienceResponseHeader() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import TcCheckbox from '../../../shared/TcCheckbox';
import TcCheckbox from '../../../../shared/TcCheckbox';
import { FormControlLabel } from '@mui/material';
import TcText from '../../../shared/TcText';
import TcText from '../../../../shared/TcText';

interface ITcvoteFeatureVotesItemsProps {
label: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import TcCard from '../../shared/TcCard';
import TcIconWithTooltip from '../../shared/TcIconWithTooltip';
import TcText from '../../shared/TcText';
import TcCard from '../../../shared/TcCard';
import TcIconWithTooltip from '../../../shared/TcIconWithTooltip';
import TcText from '../../../shared/TcText';
const yourAccountActivityMockList = [
{
description: 'Number of posts',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import TcText from '../../shared/TcText';
import TcText from '../../../shared/TcText';

function TcYourAccountActivityHeader() {
return (
Expand Down
12 changes: 6 additions & 6 deletions src/layouts/defaultLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import SidebarXs from '../components/layouts/xs/SidebarXs';
import useAppStore from '../store/useStore';
import { StorageService } from '../services/StorageService';
import { IUser } from '../utils/types';
import TcAlert from '../components/twitter/shared/TcAlert';
import TcButton from '../components/twitter/shared/TcButton';
import TcCollapse from '../components/twitter/shared/TcCollapse';
import TcText from '../components/twitter/shared/TcText';
import TcDialog from '../components/twitter/shared/TcDialog';
import TcAlert from '../components/shared/TcAlert';
import TcButton from '../components/shared/TcButton';
import TcCollapse from '../components/shared/TcCollapse';
import TcText from '../components/shared/TcText';
import TcDialog from '../components/shared/TcDialog';
import { IoCloseSharp } from 'react-icons/io5';
import TcLink from '../components/twitter/shared/TcLink';
import TcLink from '../components/shared/TcLink';
import { useRouter } from 'next/router';

type IDefaultLayoutProps = {
Expand Down
4 changes: 2 additions & 2 deletions src/pages/growth.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import { defaultLayout } from '../layouts/defaultLayout';
import SEO from '../components/global/SEO';
import TcText from '../components/twitter/shared/TcText';
import TcBoxContainer from '../components/twitter/shared/TcBox/TcBoxContainer';
import TcText from '../components/shared/TcText';
import TcBoxContainer from '../components/shared/TcBox/TcBoxContainer';
import TcAccountActivity from '../components/twitter/growth/accountActivity/TcAccountActivity';
import TcYourAccountActivity from '../components/twitter/growth/yourAccountActivity/TcYourAccountActivity';
import TcAudienceResponse from '../components/twitter/growth/audienceResponse/TcAudienceResponse';
Expand Down

0 comments on commit 107929d

Please sign in to comment.