-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* port blog-context (coverage incomplete) * mv article and use-progress * Update article and use-progress * pinned-article * explore-page * gated-content-dialog (wip) * latest-blog-posts and more-stories * mv use-all-articles * Update use-all-articles * rename blog test * blog-pages * Fix sticky bit not being sticky The article progress indicator is supposed to be sticky. The positioning got broken by some overflow on the page. * Clean up leftovers (code review)
- Loading branch information
1 parent
4c923c6
commit c875d12
Showing
35 changed files
with
1,954 additions
and
788 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export type Category = { | ||
id: string; | ||
id: number; | ||
name: string; | ||
subjectIcon?: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default function FormInput({label, longLabel, inputProps, suggestions}: | ||
{ | ||
label: string; | ||
longLabel?: string; | ||
inputProps: object; | ||
suggestions?: boolean; | ||
} | ||
): React.ReactNode; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.