Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added React Modal component to the UI Component Library #110

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ When evaluating your submission, we care about the following:
- Correctness
- Developer Experience
- Tests of any kind, as long as you can explain why you added the tests that you did
- Performance & Scaleability
- Performance & Scalability
- Code consistency, style, and quality

There's no perfect solution — "Developer Experience, "Performance & Scaleability,", and "Code Quality" mean different things in different contexts. Use your best judgement, and explicitly call out any assumptions you made along the way. Remember: there aren't any tricks here, and we review every submission with the best intent.
There's no perfect solution — "Developer Experience, "Performance & Scalability,", and "Code Quality" mean different things in different contexts. Use your best judgement, and explicitly call out any assumptions you made along the way. Remember: there aren't any tricks here, and we review every submission with the best intent.

## AI Tools

With the rapid pace and innovation of AI for software engineering, we have found tools such as Github CoPilot, ChatGPT and Codeium to be helpful in enabling us to be more productive in writing code. You are free to use these tools (heck we encourage it) with this technical assessment but keep in mind you need to understand the code suggestions they generate if you use them.
With the rapid pace and innovation of AI for software engineering, we have found tools such as GitHub CoPilot, ChatGPT and Codeium to be helpful in enabling us to be more productive in writing code. You are free to use these tools (heck we encourage it) with this technical assessment but keep in mind you need to understand the code suggestions they generate if you use them.

## Submission

Expand Down
20 changes: 20 additions & 0 deletions frontend/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8

# Indentation override for all JS under lib directory
[*.js]
indent_style = space
indent_size = 2

# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2
4 changes: 3 additions & 1 deletion frontend/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
package.json
.eslintrc
.gitignore
.eslintrc
.next