Skip to content

Commit

Permalink
[#1] private 폴더 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hanseulhee committed May 4, 2024
1 parent 3caa852 commit 91b7e0f
Show file tree
Hide file tree
Showing 21 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/_apis/tool.ts → src/apis/tool.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { instance } from '@/_libs/api'
import { instance } from '@/libs/api'

export const getToolList = async () => {
const response = await instance.get(`/list`)
Expand Down
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Providers from '@/_components/providers'
import META_DATA from '@/_constants/meta'
import Providers from '@/components/providers'
import META_DATA from '@/constants/meta'
import { Metadata } from 'next/types'

export const metadata: Metadata = {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/_components/Layout.tsx → src/components/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client'

import { theme } from '@/_styles/theme'
import { theme } from '@/styles/theme'
import { useServerInsertedHTML } from 'next/navigation'
import React, { useState } from 'react'
import styled, { ServerStyleSheet, StyleSheetManager } from 'styled-components'
Expand Down
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,9 +1,9 @@
'use client'

import LayoutRegistry from '@/_components/Layout'
import ReactQueryProviders from '@/_components/providers/ReactQueryProviders'
import GlobalStyle from '@/_styles/GlobalStyle'
import { theme } from '@/_styles/theme'
import LayoutRegistry from '@/components/Layout'
import ReactQueryProviders from '@/components/providers/ReactQueryProviders'
import GlobalStyle from '@/styles/GlobalStyle'
import { theme } from '@/styles/theme'
import { ThemeProvider } from 'styled-components'

const Providers = ({ children }: { children: React.ReactNode }) => {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/_libs/api.ts → src/libs/api.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { API_BASE_URL } from '@/_constants/api'
import { API_BASE_URL } from '@/constants/api'
import axios, { AxiosError, AxiosResponse } from 'axios'

export const instance = axios.create({
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/_styles/GlobalStyle.tsx → src/styles/GlobalStyle.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { theme } from '@/_styles/theme'
import { theme } from '@/styles/theme'
import { createGlobalStyle } from 'styled-components'

const GlobalStyle = createGlobalStyle`
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/_types/styled.d.ts → src/types/styled.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Theme } from '@/_styles/theme'
import { Theme } from '@/styles/theme'
import 'styled-components'

declare module 'styled-components' {
Expand Down
Empty file added src/utils/.gitkeep
Empty file.

0 comments on commit 91b7e0f

Please sign in to comment.