-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(types): component prop types are now exported
Closes #79
- Loading branch information
Dennis Morello
committed
Jun 9, 2021
1 parent
b2926d2
commit be1e2c1
Showing
11 changed files
with
29 additions
and
21 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
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,14 +1,21 @@ | ||
import Reveal from "./Reveal"; | ||
import Reveal, { RevealProps } from "./Reveal"; | ||
|
||
export { default as AttentionSeeker } from "./components/AttentionSeeker"; | ||
export { default as Bounce } from "./components/Bounce"; | ||
export { default as Fade } from "./components/Fade"; | ||
export { default as Flip } from "./components/Flip"; | ||
export { default as Hinge } from "./components/Hinge"; | ||
export { default as JackInTheBox } from "./components/JackInTheBox"; | ||
export { default as Roll } from "./components/Roll"; | ||
export { default as Rotate } from "./components/Rotate"; | ||
export { default as Slide } from "./components/Slide"; | ||
export { default as Zoom } from "./components/Zoom"; | ||
export { | ||
default as AttentionSeeker, | ||
AttentionSeekerProps, | ||
} from "./components/AttentionSeeker"; | ||
export { default as Bounce, BounceProps } from "./components/Bounce"; | ||
export { default as Fade, FadeProps } from "./components/Fade"; | ||
export { default as Flip, FlipProps } from "./components/Flip"; | ||
export { default as Hinge, HingeProps } from "./components/Hinge"; | ||
export { | ||
default as JackInTheBox, | ||
JackInTheBoxProps, | ||
} from "./components/JackInTheBox"; | ||
export { default as Roll, RollProps } from "./components/Roll"; | ||
export { default as Rotate, RotateProps } from "./components/Rotate"; | ||
export { default as Slide, SlideProps } from "./components/Slide"; | ||
export { default as Zoom, ZoomProps } from "./components/Zoom"; | ||
|
||
export { Reveal, RevealProps }; | ||
export default Reveal; |