module IHP.IDE.Logs.View.Logs where import IHP.ViewPrelude import IHP.IDE.ToolServer.Types import IHP.IDE.ToolServer.Layout () data LogsView = LogsView { standardOutput :: ByteString, errorOutput :: ByteString } instance View LogsView where html LogsView { .. } = [hsx|
{standardOutput}
{errorOutput}