-
Notifications
You must be signed in to change notification settings - Fork 1
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 #475 from dolittle/change-architecture
Change architecture
- Loading branch information
Showing
59 changed files
with
749 additions
and
737 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright (c) Dolittle. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
import React from 'react'; | ||
|
||
import { Link } from 'react-router-dom'; | ||
|
||
import { Typography } from '@mui/material'; | ||
|
||
import { Button } from '@dolittle/design-system'; | ||
|
||
export const Welcome = () => | ||
<> | ||
<Typography variant='h1' my={2}>Hello Admin</Typography> | ||
|
||
<Button | ||
label='Take me to the Customers' | ||
variant='filled' | ||
endWithIcon='KeyboardDoubleArrowRight' | ||
overrides={{ | ||
component: Link, | ||
to: '/admin/customers', | ||
}} | ||
/> | ||
</>; |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.