import React from "react"; import { LOADER_STYLE } from "@docspace/shared/constants"; import { RectangleSkeleton } from "@docspace/shared/skeletons"; import { StyledSMTPContent } from "./StyledComponent"; const speed = 2; const SettingsDSConnect = () => { const firstComponent = (
); const secondComponent = (
); const thirdComponent = (
); const checkboxComponent = (
); const secondCheckboxComponent = (
); const buttonsComponent = (
); return ( {firstComponent} {firstComponent} {firstComponent} {buttonsComponent} ); }; export default SettingsDSConnect;