Top Leads
Part Of Why I Think Angular Is Junk Several years[IT, other]
Posted 1 year ago
Part Of Why I Think Angular Is Junk
Several years ago I wrote about how I think React is junk. The article proved popular and led to a few… - https://medium.com/codex/part-of-why-i-think-angular-is-junk-5832d191e9a8
#angular
Stop passing props between React components! Apply[IT, job post]
Posted 1 year ago
Stop passing props between React components! Apply composition pattern
Passing props between React components is a common practice when building complex applications. While it… - https://medium.com/@flavtech/stop-passing-props-between-react-components-apply-composition-pattern-15b132bf0686
#react
What I Learnt Building a React Toast Component Em[IT, other]
Posted 1 year ago
What I Learnt Building a React Toast Component
Emil is the creator of Sonner, a popular toast notifications component. - https://emilkowal.ski/ui/building-a-toast-component
#react
SVGR - transform SVGs into React components #reac[IT, other]
Posted 1 year ago
SVGR - transform SVGs into React components
#react #library #package
Read more
18 tips for a better React code review (TS/JS) #r[IT, job post]
Posted 1 year ago
18 tips for a better React code review (TS/JS)
#react #codereview
Read more
Job Title:WordPress Developer Location: Estimated:[IT, job post]
Posted 1 year ago
Job Title:WordPress Developer
Location: Estimated: $20 - $30 an hour
Company: 'Familiarity with front-end frameworks such as React or Angular. Collaborate with designers and other developers to implement website features.
Salary:
Additional Information: Loudbaby —Remote
Apply
Is there a way to dynamically import a TypeScript 'type' in a React component?[IT, unknown]
Posted 1 year ago
Let's say I have the following example code. The usage of this shared component will have different valid name props depending on where the component is used. Is it possible to dynamically import TYPE_IMPORT so that it imports the appropriate type when used in a different context?
example/import/path1.ts
export type TYPE_IMPORT = "foo" | "bar" | "testing1" | "testing2";
...