restore component

pull/5370/head
Joseph Izang 12 months ago
parent 998d0d2365
commit a2345b17bf
  1. 3
      apps/vyper/src/app/app.tsx

@ -22,7 +22,7 @@ interface AppState {
}
interface OutputMap {
[fileName: string]: VyperCompilationOutput
[fileName: string]: any
}
const App: React.FC = () => {
@ -106,6 +106,7 @@ const App: React.FC = () => {
</div>
<article id="result" className="px-2">
<h5>Result Output!</h5>
{Object.keys(output).length > 0 ? <VyperResult output={output} themeColor={remixClient.checkActiveTheme()} /> : null}
</article>
</section>

Loading…
Cancel
Save