Просмотр исходного кода

reorganize import line order for ui package

Yuki Takei 4 лет назад
Родитель
Сommit
e9568dce4d

+ 2 - 0
packages/ui/src/components/Attachment/Attachment.jsx

@@ -1,6 +1,8 @@
 import React from 'react';
+
 import PropTypes from 'prop-types';
 
+
 import { UserPicture } from '../User/UserPicture';
 
 export class Attachment extends React.Component {

+ 3 - 1
packages/ui/src/components/PagePath/PageListMeta.tsx

@@ -1,6 +1,8 @@
 import React, { FC } from 'react';
-import { templateChecker, pagePathUtils } from '@growi/core';
+
 import { IPageHasId } from '@growi/app/src/interfaces/page';
+import { templateChecker, pagePathUtils } from '@growi/core';
+
 import { FootstampIcon } from '../SearchPage/FootstampIcon';
 
 const { isTopPage } = pagePathUtils;

+ 3 - 2
packages/ui/src/components/User/UserPicture.jsx

@@ -1,8 +1,9 @@
 import React from 'react';
-import PropTypes from 'prop-types';
 
-import { UncontrolledTooltip } from 'reactstrap';
 import { pagePathUtils } from '@growi/core';
+import PropTypes from 'prop-types';
+import { UncontrolledTooltip } from 'reactstrap';
+
 
 const { userPageRoot } = pagePathUtils;