refactor(workspace): created folder organisms, organisms folder have Header,Footer,Sidebar components

This commit is contained in:
Henrique Santos Santana 2023-01-12 16:22:24 -03:00
parent 80a9bc862b
commit ee3620c8d1
46 changed files with 19 additions and 19 deletions

View File

@ -1,4 +1,4 @@
import { AccordionProps } from '../../../components/Molecules/Accordion/@types'
import { AccordionProps } from '../../../Molecules/Accordion/@types'
export interface InstitutionalListProps
extends Omit<AccordionProps, 'setCurrentAccordion'> {}

View File

Before

Width:  |  Height:  |  Size: 799 B

After

Width:  |  Height:  |  Size: 799 B

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 986 B

After

Width:  |  Height:  |  Size: 986 B

View File

Before

Width:  |  Height:  |  Size: 817 B

After

Width:  |  Height:  |  Size: 817 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 885 B

After

Width:  |  Height:  |  Size: 885 B

View File

Before

Width:  |  Height:  |  Size: 745 B

After

Width:  |  Height:  |  Size: 745 B

View File

Before

Width:  |  Height:  |  Size: 744 B

After

Width:  |  Height:  |  Size: 744 B

View File

Before

Width:  |  Height:  |  Size: 888 B

After

Width:  |  Height:  |  Size: 888 B

View File

Before

Width:  |  Height:  |  Size: 1000 B

After

Width:  |  Height:  |  Size: 1000 B

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,9 +1,9 @@
import { ListProps } from '../@types'
import { AccordionProviderItems } from '../../../components/Molecules/Accordion/context/Items'
import { AccordionProviderItems } from '../../../Molecules/Accordion/context/Items'
import { Item } from '../../../components/Atoms/Item'
import { CustomLink } from '../../../components/Atoms/CustomLink'
import { Item } from '../../../Atoms/Item'
import { CustomLink } from '../../../Atoms/CustomLink'
import { ContactList } from './__Contact'
import { InstitutionalList } from './__Institutional'

View File

@ -1,4 +1,4 @@
import { Item } from '../../../components/Atoms/Item'
import { Item } from '../../../Atoms/Item'
import BoletoImg from '../assets/imgs/Boleto.png'
import DinersBrandImg from '../assets/imgs/Diners.png'

View File

@ -1,7 +1,7 @@
import { ContactListProps } from '../@types'
import { Item } from '../../../components/Atoms/Item'
import { Accordion } from '../../../components/Molecules/Accordion/$Accordion'
import { Item } from '../../../Atoms/Item'
import { Accordion } from '../../../Molecules/Accordion/$Accordion'
import styles from '../$Footer.module.scss'

View File

@ -1,8 +1,8 @@
import { InstitutionalListProps } from '../@types'
import { Accordion } from '../../../components/Molecules/Accordion/$Accordion'
import { Accordion } from '../../../Molecules/Accordion/$Accordion'
import { ItemList } from '../../../components/Molecules/ItemList'
import { ItemList } from '../../../Molecules/ItemList'
import styles from '../$Footer.module.scss'

View File

@ -1,7 +1,7 @@
import { QuestionsListProps } from '../@types'
import { Accordion } from '../../../components/Molecules/Accordion/$Accordion'
import { ItemList } from '../../../components/Molecules/ItemList'
import { Accordion } from '../../../Molecules/Accordion/$Accordion'
import { ItemList } from '../../../Molecules/ItemList'
import styles from '../$Footer.module.scss'

View File

@ -1,4 +1,4 @@
import { ItemList } from '../../../components/Molecules/ItemList'
import { ItemList } from '../../../Molecules/ItemList'
import facebookIcon from '../assets/icons/facebook.svg'
import instagramIcon from '../assets/icons/instagram.svg'

View File

Before

Width:  |  Height:  |  Size: 688 B

After

Width:  |  Height:  |  Size: 688 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 804 B

After

Width:  |  Height:  |  Size: 804 B

View File

Before

Width:  |  Height:  |  Size: 638 B

After

Width:  |  Height:  |  Size: 638 B

View File

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -1,6 +1,6 @@
import { IBottomProps } from './@types'
import { ItemList } from '../../../components/Molecules/ItemList'
import { ItemList } from '../../../Molecules/ItemList'
import { Actions } from './__Actions'
import closeIcon from '../assets/icons/x.svg'

View File

@ -2,7 +2,7 @@ import { useState } from 'react'
import { ISearchProps } from './@types'
import { ButtonIcon } from '../../../components/Molecules/ButtonIcon'
import { ButtonIcon } from '../../../Molecules/ButtonIcon'
import searchIcon from '../assets/icons/search.svg'

View File

@ -1,6 +1,6 @@
import { ITopProps } from './@types'
import { ButtonIcon } from '../../../components/Molecules/ButtonIcon'
import { ButtonIcon } from '../../../Molecules/ButtonIcon'
import { Actions } from './__Actions'
import { Search } from './_Search'

View File

@ -1,6 +1,6 @@
import { ActionsProps } from './@types'
import { CustomLink } from '../../../components/Atoms/CustomLink'
import { ButtonIcon } from '../../../components/Molecules/ButtonIcon'
import { CustomLink } from '../../../Atoms/CustomLink'
import { ButtonIcon } from '../../../Molecules/ButtonIcon'
export function Actions({
handleClick,

View File

@ -1,9 +1,9 @@
import { Outlet, Route, Routes } from 'react-router-dom'
import { Header } from '../template/Header/$Header'
import { Header } from '../components/Organisms/Header/$Header'
import { Sidebar } from '../template/Sidebar/$Sidebar'
import { Footer } from '../template/Footer/$Footer'
import { Footer } from '../components/Organisms/Footer/$Footer'
import { Breadcrumb } from './containers/_BreadCrumb'
import { ScrollFixed } from './containers/_ScrollFixed'