기말이 끝났는데 중간이 100일이 꺠져버렸다

This commit is contained in:
tmddn3070 2024-07-09 10:53:28 +09:00
parent 2251195f9f
commit 3a92623079
4 changed files with 1600 additions and 5 deletions

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
/node_modules /node_modules
/.next/ /.next/
.vscode/

1595
locale.ini Normal file

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,6 @@ body {
margin: 0; margin: 0;
} }
a { a {
text-decoration: none; text-decoration: none;
color: inherit; color: inherit;

View File

@ -3,9 +3,9 @@ import ClipboardCopybar from '../components/ClipboardCopybar';
import ColorPickInput from '../components/ColorPickInput'; import ColorPickInput from '../components/ColorPickInput';
const MainPage: React.FC = () => { const MainPage: React.FC = () => {
const [time, setTime] = React.useState('20240703,082000'); const [time, setTime] = React.useState('20241017,082000');
const [color, setColor] = React.useState('000000'); const [color, setColor] = React.useState('000000');
const [title, setTitle] = React.useState('기말까지'); const [title, setTitle] = React.useState('중간까지');
return ( return (
@ -19,7 +19,7 @@ const MainPage: React.FC = () => {
<input <input
className='text-black border border-gray-300 rounded px-3 py-2 w-full' className='text-black border border-gray-300 rounded px-3 py-2 w-full'
type='datetime-local' type='datetime-local'
defaultValue={'2024-07-03T08:20'} defaultValue={'2024-10-17T08:20'}
onChange={ev => onChange={ev =>
setTime(ev.target.value.replaceAll( setTime(ev.target.value.replaceAll(
/[(\-|:)|(T)]/g, /[(\-|:)|(T)]/g,