mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:14:59 +00:00
10 lines
191 B
JavaScript
10 lines
191 B
JavaScript
// @gating
|
|
const ErrorView = (error, _retry) => <MessageBox error={error}></MessageBox>;
|
|
|
|
export const Renderer = (props) => (
|
|
<Foo>
|
|
<Bar></Bar>
|
|
<ErrorView></ErrorView>
|
|
</Foo>
|
|
);
|