Skip to content

Commit 4660878

Browse files
committed
create config page.
create view page. add close fullscreen.
1 parent 06d7471 commit 4660878

22 files changed

Lines changed: 156 additions & 118 deletions

public/cross.svg

Lines changed: 1 addition & 0 deletions
Loading

src/app/bigtext/LargeButtonComponent.tsx

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/app/bigtext/LargeTextInputComponent.module.css

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/app/bigtext/page.module.css

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/app/bigtext/page.tsx

Lines changed: 0 additions & 72 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.clear {
2+
all: unset;
3+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React from "react";
2+
import styles from "./LargeButtonComponent.module.css";
3+
type Props = {
4+
onClick?: () => void,
5+
buttonType?: "clear" | string
6+
}
7+
const LargeButtonComponent: React.FC<React.PropsWithChildren<Props>> = ({ children, buttonType, onClick } ) => {
8+
return (<button
9+
className={buttonType ? styles[buttonType] : undefined}
10+
onClick={onClick}
11+
>
12+
{children}
13+
</button>);
14+
};
15+
export { LargeButtonComponent };
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.LargeTextInputComponent {
2+
3+
}

0 commit comments

Comments
 (0)