-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededrefactoring
Description
Before You Submit
- I have searched for duplicate or closed issues
- I have read the contributing guidelines
Describe the issue
The DocLink component currently stores className in a plain string:
const className =
'text-primary hover:text-primary-light transition-colors duration-250 hover:border-primary-light border-b';We can refactor this to use a template literal, keeping it in one line:
const className = `text-primary hover:text-primary-light transition-colors duration-250 hover:border-primary-light border-b`;Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededrefactoring