NotDone.tsx 244 B

1234567891011
  1. import React from 'react';
  2. export default function NotDone (props: any) {
  3. return (
  4. <>
  5. <h1>This is not implemented yet :( </h1>
  6. <div>however, here is your props.</div>
  7. <code>{JSON.stringify(props)}</code>
  8. </>
  9. );
  10. }