query progress for some pages

This commit is contained in:
Joel Mathew Thomas
2025-03-18 01:23:17 +05:30
parent 2d63cf3ab9
commit 40b71c3fdb
2 changed files with 12 additions and 1 deletions
+6 -1
View File
@@ -118,7 +118,12 @@ function PreviewPage() {
</Button> </Button>
</Box> </Box>
</Paper> </Paper>
<LinearProgress /> <LinearProgress
variant="query"
sx={{
height: 2,
}}
/>
</Container> </Container>
); );
} }
+6
View File
@@ -97,6 +97,12 @@ function ProcessingPage() {
</Typography> </Typography>
</Box> </Box>
</Paper> </Paper>
<LinearProgress
variant="query"
sx={{
height: 2,
}}
/>
</Container> </Container>
); );
} }