@giteeteam/apps-team-components 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
import { jsx as _jsx
|
|
2
|
-
import
|
|
3
|
-
const StoryPointReadView =
|
|
4
|
-
|
|
5
|
-
return _jsx(EmptyField, { readonly: readonly });
|
|
6
|
-
}
|
|
7
|
-
return _jsx(_Fragment, { children: value });
|
|
1
|
+
import { jsx as _jsx } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import NumberReadView from '../number/ReadView';
|
|
3
|
+
const StoryPointReadView = props => {
|
|
4
|
+
return _jsx(NumberReadView, { ...props });
|
|
8
5
|
};
|
|
9
6
|
StoryPointReadView.displayName = 'StoryPointReadView';
|
|
10
7
|
export default StoryPointReadView;
|