-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: All components have been upgraded for use in React 19
- Loading branch information
1 parent
3d68570
commit cf9d6b8
Showing
45 changed files
with
297 additions
and
4,037 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import { Image } from './Image'; | ||
|
||
const meta = { | ||
component: Image, | ||
} satisfies Meta<typeof Image>; | ||
|
||
export default meta; | ||
|
||
type Story = StoryObj<typeof meta>; | ||
|
||
export const Default: Story = { | ||
args: { | ||
src: 'https://github.com/do-ob-io/shared/blob/main/do-ob-logo-readme.png?raw=true', | ||
alt: 'do-ob', | ||
width: 200, | ||
height: 130, | ||
} | ||
}; |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
export { Form } from './widgets/Form/Form'; | ||
export { Navigation, type NavigationProps } from './widgets/Navigation/Navigation'; | ||
export { SearchButton } from './widgets/SearchButton/SearchButton'; | ||
export { SearchForm } from './widgets/SearchForm/SearchForm'; | ||
export { SearchInput } from './widgets/SearchInput/SearchInput'; | ||
export { ThemeSwitch } from './widgets/ThemeSwitch/ThemeSwitch'; | ||
export { ThemeButton } from './widgets/ThemeButton/ThemeButton'; | ||
export { Typewriter } from './widgets/Typewriter/Typewriter'; | ||
export { TypewriterInput } from './widgets/TypewriterInput/TypewriterInput'; | ||
export { Hero } from './widgets/Hero/Hero'; | ||
export { HeroArticles } from './widgets/HeroArticles/HeroArticles'; | ||
export { HeroStandard } from './widgets/Hero/HeroStandard'; | ||
export { HeroPrompt } from './widgets/Hero/HeroPrompt'; | ||
// export { HeroPrompt } from './widgets/Hero/HeroPrompt'; | ||
export { Brand, type BrandProps } from './widgets/Brand/Brand'; | ||
|
||
export { Header, type HeaderProps } from './widgets/Header/Header'; |
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.