mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 13:58:13 +08:00
11 lines
160 B
Plaintext
11 lines
160 B
Plaintext
|
// @flow
|
||
|
|
||
|
/*
|
||
|
hardSet:
|
||
|
- hard set incoming state
|
||
|
*/
|
||
|
|
||
|
export default function hardSet<State: Object>(inboundState: State): State {
|
||
|
return inboundState
|
||
|
}
|