I would like to set a default value on an Input from a value stored in redux.
I saw in this post that defaultValue is only for first rendering.
So I tried to use instead value then the problem is that I'm not getting able to change it's value.
import React, { useState } from "react";
import { Input } from "@fluentui/react-northstar";
const InputExample = () => {
  const [value, setValue] = useState("");
  const getText = () => {
    return setTimeout(() => setValue("blablabla"), 3000);
  };
  getText();
  return (
    <>
      <Input value={value} />
      <br />
      <br />
      <Input defaultValue={value} />
    </>
  );
};
export default InputExample;
Here's an example
 
    