forked from finos/a11y-theme-builder
-
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.
finos#889: added introduction of Components
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
code/src/ui/src/pages/content/components/ComponentIntro.tsx
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,27 @@ | ||
/* | ||
* Copyright (c) 2023 Discover Financial Services | ||
* Licensed under Apache-2.0 License. See License.txt in the project root for license information | ||
*/ | ||
import React from 'react' | ||
import { Grid } from '@mui/material'; | ||
|
||
const ComponentIntro: React.FC = () => { | ||
|
||
return ( | ||
<> | ||
<Grid container spacing={2} columns={12} margin={2}> | ||
<Grid item spacing={2} lg={12} md={12} sm={12}> | ||
<h1>Components</h1> | ||
<div> | ||
<p>The input that we gather from the user as Atom and Molecule settings help us create design system styles and components. | ||
. Here are the most popular widgets used in web and mobile applications. However, this section is meant only to reflect the | ||
values that have already been chosen and does not allow you to further configure the design system. | ||
</p> | ||
</div> | ||
</Grid> | ||
</Grid> | ||
</> | ||
) | ||
} | ||
|
||
export default ComponentIntro; |
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