From c7003c7984735a48a4fc9d35be5a68c08902b133 Mon Sep 17 00:00:00 2001 From: Viktor Fomin Date: Wed, 25 May 2022 22:25:19 +0300 Subject: [PATCH] Web: Client: move SmartBanner into folder --- .../src/components/{SmartBanner.js => SmartBanner/index.js} | 2 +- .../src/components/{smartbanner.css => SmartBanner/main.css} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename web/ASC.Web.Client/src/components/{SmartBanner.js => SmartBanner/index.js} (97%) rename web/ASC.Web.Client/src/components/{smartbanner.css => SmartBanner/main.css} (100%) diff --git a/web/ASC.Web.Client/src/components/SmartBanner.js b/web/ASC.Web.Client/src/components/SmartBanner/index.js similarity index 97% rename from web/ASC.Web.Client/src/components/SmartBanner.js rename to web/ASC.Web.Client/src/components/SmartBanner/index.js index 21d41aa713..986405ce5a 100644 --- a/web/ASC.Web.Client/src/components/SmartBanner.js +++ b/web/ASC.Web.Client/src/components/SmartBanner/index.js @@ -2,7 +2,7 @@ import React, { useState, useEffect } from "react"; import styled from "styled-components"; import { isMobile, isIOS } from "react-device-detect"; import SmartBanner from "react-smartbanner"; -import "./smartbanner.css"; +import "./main.css"; const Wrapper = styled.div` padding-bottom: 80px; diff --git a/web/ASC.Web.Client/src/components/smartbanner.css b/web/ASC.Web.Client/src/components/SmartBanner/main.css similarity index 100% rename from web/ASC.Web.Client/src/components/smartbanner.css rename to web/ASC.Web.Client/src/components/SmartBanner/main.css