+
+
+ {
+ content.map(item => )
+ }
+
+
+ )
+}
+
+export default CollapseChild
\ No newline at end of file
diff --git a/src/components/common/CollapseCommon/CollapseContent/CollapseContent.module.scss b/src/components/common/CollapseCommon/CollapseChild/CollapseContent/CollapseContent.module.scss
similarity index 100%
rename from src/components/common/CollapseCommon/CollapseContent/CollapseContent.module.scss
rename to src/components/common/CollapseCommon/CollapseChild/CollapseContent/CollapseContent.module.scss
diff --git a/src/components/common/CollapseCommon/CollapseContent/CollapseContent.tsx b/src/components/common/CollapseCommon/CollapseChild/CollapseContent/CollapseContent.tsx
similarity index 100%
rename from src/components/common/CollapseCommon/CollapseContent/CollapseContent.tsx
rename to src/components/common/CollapseCommon/CollapseChild/CollapseContent/CollapseContent.tsx
diff --git a/src/components/common/CollapseCommon/CollapseCommon.module.scss b/src/components/common/CollapseCommon/CollapseCommon.module.scss
index 4686a886a..e69de29bb 100644
--- a/src/components/common/CollapseCommon/CollapseCommon.module.scss
+++ b/src/components/common/CollapseCommon/CollapseCommon.module.scss
@@ -1,55 +0,0 @@
-@import "../../../styles/utilities";
-
-.collapseWrapper{
- @apply border-t border-b;
- border-color: var(--border-line);
- max-width: 80.4rem;
- min-height: 4rem;
- &.isActive{
- .title{
- @apply pb-0;
- }
- .contentContainer{
- @apply block;
- }
- .toggle{
- &:before {
- transform: rotate(180deg);
- }
- &:after {
- transform: rotate(180deg);
- }
- }
- }
- svg:hover{
- cursor: pointer;
- }
-}
-.title{
- @apply outline-none flex justify-between font-heading items-center pt-16 pb-16;
- font-size: 3.2rem;
- line-height: 4rem;
- letter-spacing: -0.01em;
- .toggle{
- height: 2.2rem;
- width: 2.2rem;
- position: relative;
- &:before,
- &:after{
- @apply absolute h-2;
- content: "";
- border-radius: 0.8rem;
- background: var(--text-active);
- top: 40%;
- width: 2.2rem;
- transition: transform 500ms ease;
- }
- &:before{
- transform-origin: center;
- transform: rotate(90deg);
- }
- }
-}
-.contentContainer{
- @apply hidden pb-16;
-}
diff --git a/src/components/common/CollapseCommon/CollapseCommon.tsx b/src/components/common/CollapseCommon/CollapseCommon.tsx
index 1fdce09da..848e83879 100644
--- a/src/components/common/CollapseCommon/CollapseCommon.tsx
+++ b/src/components/common/CollapseCommon/CollapseCommon.tsx
@@ -1,37 +1,20 @@
import s from './CollapseCommon.module.scss'
-import { useState } from 'react'
-import classNames from 'classnames'
-import CollapseContent from './CollapseContent/CollapseContent'
+import CollapseChild from './CollapseChild/CollapseChild'
-interface CollapseProps{
- title?: string,
- content: Array