Skip to content

Software Engineering: Modify an Existing React/Redux Frontend

Notifications You must be signed in to change notification settings

YunhuiZ/CommBank-Web

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CommBank Goal Tracker

Steps

  1. Fork rWEB (https://github.com/fencer-so/commbank-web)
  2. Start the web app in development mode /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" brew install node npm install npm run start
  3. Update the client’s goal model

// types.ts

export interface Goal { // ...

icon: string | null } 4. Display the icon on the goal card // GoalCard.tsx

const Icon = styled.h1font-size: 5.5rem;

export default function GoalCard(props: Props) { // ...

return ( {/* ... */}

  <Icon>{goal.icon}</Icon>
</Container>

) } 5. Implement an emoji picker

About

Software Engineering: Modify an Existing React/Redux Frontend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 96.4%
  • HTML 2.7%
  • SCSS 0.9%