From 6aa7d30e5a97b5e518004b0ad00e422dd0712842 Mon Sep 17 00:00:00 2001 From: Hyobeen-Park Date: Thu, 11 Jul 2024 06:59:12 +0900 Subject: [PATCH] =?UTF-8?q?[DEL/#12]=20HomeRecommendIntern=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../home/component/HomeRecommendIntern.kt | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 feature/src/main/java/com/terning/feature/home/component/HomeRecommendIntern.kt diff --git a/feature/src/main/java/com/terning/feature/home/component/HomeRecommendIntern.kt b/feature/src/main/java/com/terning/feature/home/component/HomeRecommendIntern.kt deleted file mode 100644 index 5cb2de99c..000000000 --- a/feature/src/main/java/com/terning/feature/home/component/HomeRecommendIntern.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.terning.feature.home.component - -import androidx.compose.foundation.ExperimentalFoundationApi -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.lazy.LazyColumn -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.unit.dp -import com.terning.feature.home.TerningPostItem - -@OptIn(ExperimentalFoundationApi::class) -@Composable -fun HomeRecommendIntern( - modifier: Modifier = Modifier -) { - LazyColumn( - verticalArrangement = Arrangement.spacedBy(12.dp) - ) { - stickyHeader { - - } - items(10) { - TerningPostItem( - imageUrl = "https://reqres.in/img/faces/7-image.jpg", - title = "[Someone] 콘텐츠 마케터 대학생 인턴 채용", - dateDeadline = "2", - workingPeriod = "2개월", - isScraped = false, - ) - } - } -} \ No newline at end of file