The code area and language picker are not part of the core Blockly distribution. You can emulate it in your app by calling
Blockly.JavaScript.workspaceToCode(Blockly.getMainWorkspace()), which returns the text-based representation of the current blocks, which you could e.g. insert into a
<textarea>.
- Aaron