
> ReactのMUIのselectboxの初期値(testという文字列)が反映されない
とのことですが、「'test' という文字列が反映される」とはUI上どうなることなのかが分からなかったです。
ちなみに再現用URLのcodesandboxでコードを実行し、コンソールを開くと
MUI: You have provided an out-of-range value `test` for the select component.
Consider providing a value that matches one of the available options or ''.
The available values are `10`, `20`, `30`.
at SelectInput (https://nyddzn.csb.app/node_modules/@mui/material/Select/SelectInput.js:111:30)
・・・
という警告が表示されています。これによれば初期値として許容されるのは、文字列の `"10"`, `"20"`, `"30"`, と空文字列 `''` のみです。