Refactor plugin to make it fast refreshable
Summary: Refactored Navigation plugin to make it fast-refreshable: moved the main component into a separate file and exported all components as named functions. Without these changes every change of UI triggered full reload. Reviewed By: timur-valiev Differential Revision: D29814077 fbshipit-source-id: 5285bdc5f14a5163f9501c0d45a3affefb08fc8e
This commit is contained in:
committed by
Facebook GitHub Bot
parent
a78b6124d7
commit
d782f19001
@@ -28,7 +28,7 @@ type Props = {
|
||||
onSubmit: (uri: URI) => void;
|
||||
};
|
||||
|
||||
export default (props: Props) => {
|
||||
export function RequiredParametersDialog(props: Props) {
|
||||
const {onHide, onSubmit, uri, requiredParameters} = props;
|
||||
const {isValid, values, setValuesArray} =
|
||||
useRequiredParameterFormValidator(requiredParameters);
|
||||
@@ -95,4 +95,4 @@ export default (props: Props) => {
|
||||
</Layout.Container>
|
||||
</Modal>
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user