-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from lfernando2091/dev
Last Release
- Loading branch information
Showing
39 changed files
with
1,350 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Stack } from '@mui/material'; | ||
import { AccordionSection } from '../home/sections/AccordionSection'; | ||
|
||
export const AccordionPage = () => { | ||
return (<Stack spacing={6}> | ||
<AccordionSection/> | ||
</Stack>) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Stack } from '@mui/material'; | ||
import { AlertSection } from '../home/sections/AlertSection'; | ||
|
||
export const AlertPage = () => { | ||
return (<Stack spacing={6}> | ||
<AlertSection/> | ||
</Stack>) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Stack } from '@mui/material'; | ||
import { AppBarSection } from '../home/sections/AppBarSection'; | ||
|
||
export const AppBarPage = () => { | ||
return (<Stack spacing={6}> | ||
<AppBarSection/> | ||
</Stack>) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Stack } from '@mui/material'; | ||
import { BadgeSection } from '../home/sections/BadgeSection'; | ||
|
||
export const BadgePage = () => { | ||
return (<Stack spacing={6}> | ||
<BadgeSection/> | ||
</Stack>) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { ButtonSection } from '../home/sections/ButtonSection'; | ||
import { IconButtonSection } from '../home/sections/IconButtonSection'; | ||
import { ToggleButtonGroupSection } from '../home/sections/ToggleButtonGroupSection'; | ||
import { FABSection } from '../home/sections/FABSection'; | ||
import { Stack } from '@mui/material'; | ||
|
||
export const ButtonsPage = () => { | ||
return (<Stack spacing={6}> | ||
<ButtonSection/> | ||
<IconButtonSection/> | ||
<ToggleButtonGroupSection/> | ||
<FABSection/> | ||
</Stack>) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { CardSection } from '../home/sections/CardSection'; | ||
import { PaperSection } from '../home/sections/PaperSection'; | ||
import { Stack } from '@mui/material'; | ||
|
||
export const CardPage = () => { | ||
return (<Stack spacing={6}> | ||
<CardSection/> | ||
<PaperSection/> | ||
</Stack>) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { CheckboxSection } from '../home/sections/CheckboxSection'; | ||
import { Stack } from '@mui/material'; | ||
|
||
export const CheckboxPage = () => { | ||
return (<Stack spacing={6}> | ||
<CheckboxSection/> | ||
</Stack>) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Stack } from '@mui/material'; | ||
import { DividerSection } from '../home/sections/DividerSection'; | ||
|
||
export const DividerPage = () => { | ||
return (<Stack spacing={6}> | ||
<DividerSection/> | ||
</Stack>) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
|
||
export const EmptyPage = () => { | ||
return (<>Empty page</>) | ||
return (<> | ||
No Content | ||
</>) | ||
} |
Oops, something went wrong.