Skip to content

Commit 098a07c

Browse files
committed
knip
1 parent c49558d commit 098a07c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

stories/Button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import './button.css';
22

3-
export type ButtonProps = {
3+
type ButtonProps = {
44
/** Is this the principal call to action on the page? */
55
primary?: boolean;
66
/** What background color to use */

stories/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ type User = {
55
name: string;
66
};
77

8-
export type HeaderProps = {
8+
type HeaderProps = {
99
user?: User;
1010
onLogin?: () => void;
1111
onLogout?: () => void;

0 commit comments

Comments
 (0)