style : 소스 정리

main
Lim Jonguk 3 years ago
parent 90dacfbbec
commit 592b8f882e

@ -13,7 +13,7 @@ const config = {
fontFamily: `'Roboto', sans-serif`,
borderRadius: 4,
outlinedFilled: true,
navType: 'light', // light, dark
navType: 'dark', // light, dark
presetColor: 'default', // default, theme1, theme2, theme3, theme4, theme5, theme6
locale: 'ko', // 'en' - English, 'fr' - French, 'ro' - Romanian, 'zh' - Chinese
rtlLayout: false,

@ -52,23 +52,9 @@ const Board = () => {
{ headerName: 'step', field: 'ciStep' },
{ headerName: 'level', field: 'ciRevel' },
{ headerName: '비번', field: 'ciPass' },
{
headerName: 'email',
field: 'ciEmail',
renderCell: (params) => (
<strong>
{params.value}
<Button variant="contained" color="primary" size="small">
Open
</Button>
</strong>
)
},
{ headerName: 'email', field: 'ciEmail' },
{ headerName: '내용', field: 'ciContents' },
{
headerName: 'IP',
field: `ciIp`
}
{ headerName: 'IP', field: `ciIp` }
];
const handleSearch = async (event) => {
if (event.type === 'keydown' && event.key === 'Enter') {

@ -38,23 +38,9 @@ const PublicBoard = () => {
{ headerName: 'step', field: 'ciStep' },
{ headerName: 'level', field: 'ciRevel' },
{ headerName: '비번', field: 'ciPass' },
{
headerName: 'email',
field: 'ciEmail',
renderCell: (params) => (
<strong>
{params.value}
<Button variant="contained" color="primary" size="small">
Open
</Button>
</strong>
)
},
{ headerName: 'email', field: 'ciEmail' },
{ headerName: '내용', field: 'ciContents' },
{
headerName: 'IP',
field: `ciIp`
}
{ headerName: 'IP', field: `ciIp` }
];
useEffect(() => {

Loading…
Cancel
Save