devabhishekpal commented on code in PR #7017:
URL: https://github.com/apache/ozone/pull/7017#discussion_r1703730117


##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/components/overviewCard/overviewSimpleCard.tsx:
##########
@@ -0,0 +1,138 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import React from 'react';
+import { Card, Col, Row } from 'antd';
+import { Link } from 'react-router-dom';
+import { ClusterOutlined, ContainerOutlined, DatabaseOutlined, DeleteOutlined, 
DeploymentUnitOutlined, FileTextOutlined, FolderOpenOutlined, InboxOutlined, 
QuestionCircleOutlined } from '@ant-design/icons';
+
+
+// ------------- Types -------------- //
+type IconOptions = {
+  [key: string]: React.ReactElement
+}
+
+type OverviewCardProps = {
+  icon: string;
+  data: number | React.ReactElement;
+  title: string;
+  hoverable?: boolean;
+  loading?: boolean;
+  linkToUrl?: string;
+}
+

Review Comment:
   Since the styles are smaller in scale, having it inline or as a constant 
will have the same performance as the styles are a part of JSX which is 
required to be parsed in either scenario.
   
   To improve performance we can shift to an external stylesheet, but even that 
would only improve negligible performance, hence having inline styles in this 
scenario is easier to read.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to