Skip to content

Commit

Permalink
removing disused files
Browse files Browse the repository at this point in the history
  • Loading branch information
jandsonrj committed Dec 1, 2023
1 parent 327f1fb commit ca5dbd1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 36 deletions.
32 changes: 0 additions & 32 deletions frontend/components/Banner.js

This file was deleted.

5 changes: 3 additions & 2 deletions frontend/components/SpeczData.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { DataGrid } from '@mui/x-data-grid'
import moment from 'moment'
import { Box } from '@mui/material'
import PropTypes from 'prop-types'

const columns = [
Expand Down Expand Up @@ -31,15 +32,15 @@ const columns = [

function DataTable({ rows }) {
return (
<div style={{ height: 300, width: '100%' }}>
<Box style={{ height: 300, width: '100%' }}>
<DataGrid
rows={rows}
columns={columns}
// getRowId={row => row.id}
pageSizeOptions={[5, 10]}
checkboxSelection
/>
</div>
</Box>
)
}

Expand Down
5 changes: 3 additions & 2 deletions frontend/components/TsmData.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { DataGrid } from '@mui/x-data-grid'
import moment from 'moment'
import { Box } from '@mui/material'
import PropTypes from 'prop-types'

const columns = [
Expand Down Expand Up @@ -31,14 +32,14 @@ const columns = [

function DataTable({ rows }) {
return (
<div style={{ height: 300, width: '100%' }}>
<Box style={{ height: 300, width: '100%' }}>
<DataGrid
rows={rows}
columns={columns}
// getRowId={row => row.id}
pageSizeOptions={[5, 10]}
/>
</div>
</Box>
)
}

Expand Down

0 comments on commit ca5dbd1

Please sign in to comment.