-
Notifications
You must be signed in to change notification settings - Fork 69
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 #892 from omesh-omg/adding-introduction-components…
…-#889 #889: added introduction of Components
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
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,28 @@ | ||
/* | ||
* 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> These are the core components of your design language, the most common widgets used in web and mobile applications. | ||
The input that we gather from you for Atom and Molecule settings help us define design system styles that will be | ||
applied to components. 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