From 447275950946c657f1a6b8a8508ac439cc887548 Mon Sep 17 00:00:00 2001 From: Laktionov Anton Date: Tue, 19 May 2026 19:24:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BF=D0=B8=D1=81=D0=BE=D0=BA=20=D1=81?= =?UTF-8?q?=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB=D0=B8=20=D0=BF=D0=BE=20=D0=BF?= =?UTF-8?q?=D0=BE=D0=B4=D1=81=D0=BA=D0=B0=D0=B7=D0=BA=D0=B5=20=D0=98=D0=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.jsx | 2 +- src/App.scss | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 src/App.scss diff --git a/src/App.jsx b/src/App.jsx index 8fb1e68..8b54afc 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,5 +1,5 @@ import { useEffect, useRef, useState } from 'react'; -import styles from './App.css'; +import styles from './App.module.scss'; const InfiniteList = () => { const [items, setItems] = useState([...Array(20).keys()]); // Initial data diff --git a/src/App.scss b/src/App.scss deleted file mode 100644 index 5e617bc..0000000 --- a/src/App.scss +++ /dev/null @@ -1,15 +0,0 @@ -.container { -/* display: flex; - flex-direction: column; - flex-wrap: nowrap;*/ - height: 500px; - overflow: auto; - border: 1px solid black; -} -.item { - font-size: 16pt; - border: 1px dotted gray; - /*margin: 5px 10px; - padding: 10px;*/ - border-radius: 5px; -} \ No newline at end of file