add components

This commit is contained in:
2023-07-29 09:15:02 +03:00
parent d02015032a
commit 0ffda57c39
14 changed files with 445 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
import { Component } from "react";
import "./css/slider.css";
class Slider extends Component {
state = {};
render() {
return (
<div className="universe_slid">
<span className="universe_slid_active"></span>
<span className="universe_slid_disable"></span>
<span className="universe_slid_disable"></span>
<span className="universe_slid_disable"></span>
</div>
);
}
}
export default Slider;