-
Notifications
You must be signed in to change notification settings - Fork 0
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
Homepage #5
base: dev
Are you sure you want to change the base?
Conversation
|
||
const baseUrl = 'http://localhost:3000'; | ||
|
||
export const axiosGet = async <T = any>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider removing the any
here and below, to force others to always provide the generic param
const TextContainer = styled.div` | ||
background: rgba(255, 255, 255, 0.6); | ||
box-shadow: 0 -2px 12px rgba(#000, 0.3); | ||
padding: 10px 12px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stick to rem
units everywhere, apart from stuff that needs to be "fixed" like borders f.e. Use you best judgment
}) | ||
} | ||
|
||
function uuidv4() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you will export this one out, you can use it for uuid if you need it somewhere.
Squash all of the commits into one (I can show you how to do it). You better learn how to do it manually. It will become handy |
Pls review