feat: add group

This commit is contained in:
2024-11-16 23:50:34 +07:00
parent b88b04a235
commit c8e61ed4aa
24 changed files with 534 additions and 86 deletions
@@ -52,10 +52,9 @@ const InteractiveSession = ({ type, params }: InteractiveSessionProps) => {
) : (
<Terminal url={termUrl} />
);
default:
throw new Error("Unknown interactive session type");
}
return null;
};
export default InteractiveSession;