This file contains hidden or 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
| [redshift] | |
| temp-day=5800 | |
| temp-night=2400 | |
| transition=0 | |
| gamma=0.8 | |
| location-provider=manual | |
| [manual] | |
| lat=-33.5 | |
| lon=-70.5 | |
| [randr] |
This file contains hidden or 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
| font_family Caskaydia Cove Nerd Font | |
| font_size 12.0 | |
| background_opacity .8 | |
| remember_window_size no | |
| initial_window_width 640 | |
| initial_window_height 350 | |
| cursor_shape beam | |
| cursor_beam_thickness 1.8 |
This file contains hidden or 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
| import {useReducer, useState} from "react" | |
| interface CounterState { | |
| counter: number | |
| previus: number | |
| changes: number | |
| } | |
| const INITIAL_STATE:CounterState = { |
This file contains hidden or 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
| declare module '*.jpg' { | |
| const content: any; // you can also set this to string | |
| export default content; | |
| } |
This file contains hidden or 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
| import {useState} from "react" | |
| export const useForm = (initialState = {}) => { | |
| const [values,setValues] = useState(initialState) | |
| const reset = () => { | |
| setValues(initialState) | |
| } |
NewerOlder