We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c49558d commit 098a07cCopy full SHA for 098a07c
2 files changed
stories/Button.tsx
@@ -1,6 +1,6 @@
1
import './button.css';
2
3
-export type ButtonProps = {
+type ButtonProps = {
4
/** Is this the principal call to action on the page? */
5
primary?: boolean;
6
/** What background color to use */
stories/Header.tsx
@@ -5,7 +5,7 @@ type User = {
name: string;
};
7
8
-export type HeaderProps = {
+type HeaderProps = {
9
user?: User;
10
onLogin?: () => void;
11
onLogout?: () => void;
0 commit comments