-
-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Kyle Holmberg <[email protected]>
- Loading branch information
1 parent
61d5bf9
commit 0cdc979
Showing
15 changed files
with
26 additions
and
16 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
3 changes: 2 additions & 1 deletion
3
components/Timeline/Timeline.js → components/Timeline/Timeline.tsx
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
9 changes: 4 additions & 5 deletions
9
...s/Timeline/TimelineEvent/TimelineEvent.js → .../Timeline/TimelineEvent/TimelineEvent.tsx
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
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions
1
...nents/Timeline/TimelineNav/TimelineNav.js → ...ents/Timeline/TimelineNav/TimelineNav.tsx
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,3 +1,4 @@ | ||
// @ts-expect-error | ||
import { Link } from 'react-scroll'; | ||
import historyData from '../historyData'; | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 0 additions & 10 deletions
10
components/UpgradeBrowserOverlay/__stories__/UpgradeBrowserOverlay.stories.js
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
components/UpgradeBrowserOverlay/__stories__/UpgradeBrowserOverlay.stories.tsx
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,15 @@ | ||
import { Meta, StoryObj } from '@storybook/react'; | ||
import UpgradeBrowserOverlay from '../UpgradeBrowserOverlay'; | ||
|
||
type UpgradeBrowserOverlayStoryType = StoryObj<typeof UpgradeBrowserOverlay>; | ||
|
||
const meta: Meta<typeof UpgradeBrowserOverlay> = { | ||
title: 'UpgradeBrowserOverlay', | ||
component: UpgradeBrowserOverlay, | ||
}; | ||
|
||
export default meta; | ||
|
||
export const Default: UpgradeBrowserOverlayStoryType = { | ||
render: () => <UpgradeBrowserOverlay />, | ||
}; |
File renamed without changes.
File renamed without changes.