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