-
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.
- Loading branch information
1 parent
4cd95bf
commit b95db3b
Showing
7 changed files
with
6 additions
and
10 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
5 changes: 4 additions & 1 deletion
5
apps/azkaban-admin-ui/src/features/auth/login/components/header.component.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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
export function AuthLoginHeader() { | ||
return ( | ||
<h1 className="text-3xl text-slate-800 dark:text-slate-100 font-bold mb-6"> | ||
Welcome Back ✨ | ||
Welcome Back{' '} | ||
<span role="img" aria-labelledby="Star"> | ||
✨ | ||
</span> | ||
</h1> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,12 +1,9 @@ | ||
import { createSlice } from '@reduxjs/toolkit/react'; | ||
import { userState } from './user.state'; | ||
import { ActionReducerMapBuilder } from '@reduxjs/toolkit'; | ||
import { UserModel } from './user.model'; | ||
|
||
export const userSlice = createSlice({ | ||
name: 'user', | ||
initialState: userState, | ||
reducers: {}, | ||
extraReducers: (builder: ActionReducerMapBuilder<UserModel>) => {}, | ||
}); | ||
export default userSlice.reducer; |