Update app.tsx

This commit is contained in:
Steve Ruiz 2021-09-08 11:27:56 +01:00
parent 4a0800a5df
commit edc87ee317

View file

@ -1,6 +1,6 @@
import * as React from 'react'
import NewId from './newId'
import Basic from './basic'
export default function App(): JSX.Element {
return <NewId />
return <Basic />
}