()
| 6 | class Main extends Component { |
| 7 | // this is test function, please remove it before develop. |
| 8 | async componentDidMount() { |
| 9 | const a = await Promise.resolve({ react: 1, maker: 2 }); |
| 10 | const b = { ...a }; |
| 11 | console.log(b); |
| 12 | } |
| 13 | |
| 14 | render() { |
| 15 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected