Skip to content

Commit

Permalink
add annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
SorinC6 committed Jul 9, 2024
1 parent 517a93f commit 5a88c4b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// @flow

import { Stack, Typography } from '@mui/material';
import { ReactComponent as NoCompleteOders } from '../../../assets/images/revamp/no-complete-orders.inline.svg';
import type { Node } from 'react';

const NoCompleteOrders = () => {
const NoCompleteOrders = (): Node => {
return (
<Stack direction="column" justifyContent="center" alignItems="center" flex={1} pt="98px">
<NoCompleteOders />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// @flow

import { Stack, Typography } from '@mui/material';
import type { Node } from 'react';
import { ReactComponent as NoOpenOders } from '../../../assets/images/revamp/no-open-orders.inline.svg';

const NoOpenOrders = () => {
const NoOpenOrders = (): Node => {
return (
<Stack direction="column" justifyContent="center" alignItems="center" flex={1} pt="98px">
<NoOpenOders />
Expand Down

0 comments on commit 5a88c4b

Please sign in to comment.