Skip to content

Commit

Permalink
Merge pull request #340 from themoment-team/feature/assets
Browse files Browse the repository at this point in the history
[Client] Assets -> assets
  • Loading branch information
yoosion030 committed Dec 31, 2023
2 parents 1b05f23 + 6bed322 commit 76c19eb
Show file tree
Hide file tree
Showing 46 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/PageContainer/AboutPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { NextPage } from 'next';
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import Image from 'next/image';
import {
BackEnd,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as S from './style';
import { useEffect, useState } from 'react';
import dayjs from 'dayjs';
import { ApplicantsStatus } from 'components';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import { LocalScoreType } from 'type/score';
import toStringArray from 'Utils/Array/toStringArray';
import { formatGender } from 'Utils/Format';
Expand Down
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/PageContainer/ApplyPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect, useRef, useState } from 'react';
import type { NextPage } from 'next';
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import { css } from '@emotion/react';
import useStore from 'Stores/StoreContainer';
import {
Expand Down
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/PageContainer/BrowserPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { NextPage } from 'next';
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';

const BrowserPage: NextPage = () => {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { NextPage } from 'next';
import { ScoreSelect, ScoreResultModal, FreeSemesterBtn } from 'components';
import * as S from 'styles/Calculate';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import { FieldErrors, useForm } from 'react-hook-form';
import { useEffect, useState } from 'react';
import {
Expand Down
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/PageContainer/FAQPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useState } from 'react';
import type { NextPage } from 'next';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import * as S from './style';
import { FAQBox } from 'components';
import useStore from 'Stores/StoreContainer';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NextPage } from 'next';
import { InspectionIcon } from 'Assets/svg';
import { InspectionIcon } from 'assets/svg';
import * as S from './style';
import { css } from '@emotion/react';
import device from 'shared/config';
Expand Down
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/PageContainer/ManualPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { NextPage } from 'next';
import * as S from 'PageContainer/InformationPage/style';
import * as DS from 'components/InformationDescription/style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import styled from '@emotion/styled';
import { css } from '@emotion/react';
import Image from 'next/image';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { NextPage } from 'next';

import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';

const NotFoundPage: NextPage = () => {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { NextPage } from 'next';
import { ScoreSelect, ScoreResultModal, FreeSemesterBtn } from 'components';
import * as S from 'styles/Calculate';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import { FieldErrors, useForm } from 'react-hook-form';
import { useState } from 'react';
import {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/components/Common/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as I from 'Assets/svg';
import * as I from 'assets/svg';

import * as S from './style';

Expand Down
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/components/Common/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useRouter } from 'next/router';
import React, { useState } from 'react';
import useStore from 'Stores/StoreContainer';
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import { SideBar } from 'components';
import { toast } from 'react-toastify';
import { isFinalEnd } from 'shared/Date/afterApply';
Expand Down
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/components/FAQBox/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import useStore from 'Stores/StoreContainer';
import { FAQType } from 'type/faq';
import { useEffect, useState } from 'react';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { css } from '@emotion/react';
import Link from 'next/link';
import { useEffect, useState } from 'react';
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import { MainDescStatusType } from 'type/user';
import { useRouter } from 'next/router';
import device from 'shared/config';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import React, {
} from 'react';
import useStore from 'Stores/StoreContainer';
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import axios from 'axios';

interface schoolType {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Global, css } from '@emotion/react';
import { useRouter } from 'next/router';
import React, { useState } from 'react';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import useStore from 'Stores/StoreContainer';
import * as S from './style';
import device from 'shared/config';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import useStore from 'Stores/StoreContainer';
import { css } from '@emotion/react';
import application from 'Api/application';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import React, { useEffect } from 'react';

const SuccessModal: React.FC = () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';

const SignUpResultModal: React.FC = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion packages/hello-gsm/src/components/SideBar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { NextPage } from 'next';
import * as S from './style';
import * as I from 'Assets/svg';
import * as I from 'assets/svg';
import { useEffect } from 'react';
import useStore from 'Stores/StoreContainer';
import NavLink from './NavLink';
Expand Down

1 comment on commit 76c19eb

@vercel
Copy link

@vercel vercel bot commented on 76c19eb Dec 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

test-hello-gsm – ./packages/hello-gsm

test-hello-gsm-git-develop-the-moment.vercel.app
hello-gsm-test.vercel.app
test-hello-gsm-the-moment.vercel.app
test.hellogsm.kr

Please sign in to comment.