Skip to content

Commit e127b03

Browse files
authored
Merge pull request #669 from topcoder-platform/issue-659
Onboarding update
2 parents 7eaa80d + 9885820 commit e127b03

File tree

25 files changed

+16
-5
lines changed

25 files changed

+16
-5
lines changed

src/apps/onboarding/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './src'

src/apps/onboarding/components/progress-bar/index.tsx renamed to src/apps/onboarding/src/components/progress-bar/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import styles from './styles.module.scss'
44

55
interface ProgressBarProps {
66
progress: number
7+
label?: string
78
className?: string
89
}
910

@@ -15,7 +16,7 @@ export const ProgressBar: FC<ProgressBarProps> = (props: ProgressBarProps) => {
1516

1617
return (
1718
<div className={props.className}>
18-
<span>#/##</span>
19+
<span>{props.label}</span>
1920
<div className={styles.wrap}>
2021
<div
2122
className='progress'

src/apps/onboarding/components/progress-bar/styles.module.scss renamed to src/apps/onboarding/src/components/progress-bar/styles.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import '../../../../libs/ui/lib/styles/includes';
1+
@import '../../../../../libs/ui/lib/styles/includes';
22

33
.wrap {
44
background: $black-10;
File renamed without changes.

src/apps/onboarding/src/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { onboardingRoutes } from './onboarding.routes'

0 commit comments

Comments
 (0)