module Web.View.ApiKeys.New where import Web.Types import Generated.Types import IHP.Prelude import IHP.ViewPrelude import Web.Routes () data NewView = NewView { apiKey :: !ApiKey , consumer :: !ApiConsumer } instance View NewView where html NewView { .. } = [hsx|

New API Key

For consumer: {consumer.name}

e.g. framework:read hub:dev-hub:read hub:dev-hub:write

Cancel
|]