Skip to content

Commit

Permalink
mock fetch user interface problem
Browse files Browse the repository at this point in the history
  • Loading branch information
hmellahi committed Nov 16, 2024
1 parent 83c5796 commit 36dadd6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
2 changes: 1 addition & 1 deletion challenge-cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ program
console.log(
`To begin working on the challenge\n run: cd "${solutionPath}"`
);
});
}); b

program
.command("start <challengeName> [solutionName]")
Expand Down
8 changes: 1 addition & 7 deletions problems/file-explorer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

Create a file tree component that displays a hierarchical file structure. The component should allow users to expand and collapse folders to navigate through the file system. Files and folders should be displayed in a structured manner, with folders being expandable to show their contents.

![File Tree Demo](solutions/react-ts/public/images/demo.png)

## Requirements

- The file tree should display a hierarchical structure of files and folders.
Expand Down Expand Up @@ -61,8 +59,4 @@ const fileTreeData = [
type: "file",
},
];
```

## Live Demo

[Check out the live demo here](#)
```
2 changes: 2 additions & 0 deletions problems/twitter-like-II/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ The basic Twitter like button can be visually dull without animation. Building o
- Handle spam clicking (rapid like/unlike actions) without breaking functionality
- Maintain all functionality from the original Twitter Like component
- Ensure the component is reusable and customizable
- [TODO] ensure its takes only the given width/height
- [TODO] Don't mutate the total count of likes, use a derived state for total counts

## Example Usage

Expand Down
8 changes: 1 addition & 7 deletions problems/wordle-game/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

Build a clone of the popular word game **Wordle**, where players have six attempts to guess a five-letter word. Feedback is given for each guess in the form of colored tiles indicating when letters match or occupy the correct position.

<img src="solutions/react-ts/public/images/demo.png"/>

## Requirements

- A random five-letter word is chosen every time the app launches.
Expand All @@ -22,8 +20,4 @@ Build a clone of the popular word game **Wordle**, where players have six attemp
- **Default (Light Gray)**: `#d3d6da`
- **Correct (Green)**: `#6aaa64`
- **Present (Yellow)**: `#c9b458`
- **Absent (Dark Gray)**: `#787c7e`

## Live Demo

[Check out the live demo here](#)
- **Absent (Dark Gray)**: `#787c7e`

0 comments on commit 36dadd6

Please sign in to comment.