+ Fixed minor bugs
+ Use dispatch method
Now you have to change
python
await <DiscordComponents or Context>.wait_for_interact("button_click")
<DiscordComponents>.on_interact("button_click")
async def on_button_click(res): ...
to
python
await <Client>.wait_for("button_click")
<Client>.event
async def on_button_click(res): ...