You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* eslint-disable */
import React from "react";
import { View } from "@aws-amplify/ui-react";
export type aawwddProps = {} & CommonProps;
export default function aawwdd(props: aawwddProps): JSX.Element {
return (<View {...props} {...getOverrideProps(props.overrides, "View")}></View>);
}
As you can see, the component code itself depends on calls to getOverrideProps, JSX.Element and CommonProps which are not imported. This means the component is not usable.
The text was updated successfully, but these errors were encountered:
I ran this script:
The
schema
passed in was:Which generated this component:
As you can see, the component code itself depends on calls to
getOverrideProps
,JSX.Element
andCommonProps
which are not imported. This means the component is not usable.The text was updated successfully, but these errors were encountered: