This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(settings): add localize to settings form
- Loading branch information
Showing
18 changed files
with
2,527 additions
and
1,673 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,41 +1,46 @@ | ||
import { atom } from "recoil"; | ||
import { atom } from 'recoil'; | ||
|
||
export const congNameState = atom({ | ||
key: 'congName', | ||
default: '', | ||
}) | ||
key: 'congName', | ||
default: '', | ||
}); | ||
|
||
export const congNumberState = atom({ | ||
key: 'congNumber', | ||
default: '', | ||
}) | ||
key: 'congNumber', | ||
default: '', | ||
}); | ||
|
||
export const congIDState = atom({ | ||
key: 'congID', | ||
default: '', | ||
}) | ||
key: 'congID', | ||
default: '', | ||
}); | ||
|
||
export const congPasswordState = atom({ | ||
key: 'congPassword', | ||
default: '', | ||
}) | ||
key: 'congPassword', | ||
default: '', | ||
}); | ||
|
||
export const isErrorCongNameState = atom({ | ||
key: 'isErrorCongName', | ||
default: false, | ||
}) | ||
key: 'isErrorCongName', | ||
default: false, | ||
}); | ||
|
||
export const isErrorCongNumberState = atom({ | ||
key: 'isErrorCongNumber', | ||
default: false, | ||
}) | ||
key: 'isErrorCongNumber', | ||
default: false, | ||
}); | ||
|
||
export const meetingDayState = atom({ | ||
key: 'meetingDay', | ||
default: 3, | ||
}) | ||
key: 'meetingDay', | ||
default: 3, | ||
}); | ||
|
||
export const classCountState = atom({ | ||
key: 'classCount', | ||
default: 1, | ||
}) | ||
key: 'classCount', | ||
default: 1, | ||
}); | ||
|
||
export const liveClassState = atom({ | ||
key: 'liveClass', | ||
default: false, | ||
}); |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.