This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
KEY=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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ComponentPropsWithoutRef } from "react"; | |
export type ComponentProps = {} & ComponentPropsWithoutRef<"div">; | |
export const Component = ({ ...props }: ComponentProps) => { | |
return ( | |
<> | |
<div {...props}>MyComponent</div> | |
</> | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { DataProvider } from "./contexts"; | |
function App() { | |
return ( | |
<> | |
<DataProvider> | |
<></> | |
</DataProvider> | |
</> | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type ComponentProps = {}; | |
export const Component = ({ ...props }: ComponentProps) => { | |
const { isLoading, isError, data } = useGetData(); | |
return <></>; | |
}; |