Skip to content

Commit

Permalink
chore #13: divide component to each package
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeeum committed Dec 4, 2024
1 parent 1248207 commit 0f51c4f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/org/sopt/and/feature/home/HomeRoute.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ import androidx.lifecycle.compose.collectAsStateWithLifecycle
import kotlinx.collections.immutable.PersistentList
import kotlinx.collections.immutable.persistentListOf
import org.sopt.and.R
import org.sopt.and.feature.component.HomeContent
import org.sopt.and.core.component.TopBar
import org.sopt.and.feature.home.component.HomeContent
import org.sopt.and.feature.home.model.ContentModel
import org.sopt.and.ui.theme.ANDANDROIDTheme
import org.sopt.and.ui.theme.Black
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.and.feature.component
package org.sopt.and.feature.home.component

import androidx.compose.foundation.Image
import androidx.compose.foundation.layout.Arrangement
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/org/sopt/and/feature/my/MyRoute.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ import androidx.compose.ui.unit.sp
import androidx.hilt.navigation.compose.hiltViewModel
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import org.sopt.and.R
import org.sopt.and.feature.component.EventContent
import org.sopt.and.feature.component.HistoryContent
import org.sopt.and.feature.my.component.EventContent
import org.sopt.and.feature.my.component.HistoryContent
import org.sopt.and.ui.theme.ANDANDROIDTheme
import org.sopt.and.ui.theme.Black
import org.sopt.and.ui.theme.Blue
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.and.feature.component
package org.sopt.and.feature.my.component

import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Column
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.sopt.and.feature.component
package org.sopt.and.feature.my.component

import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
Expand Down

0 comments on commit 0f51c4f

Please sign in to comment.