Skip to content

Commit 7ac781b

Browse files
committed
feat: rename components and add support for persisting the state
1 parent 0ec1b7a commit 7ac781b

File tree

30 files changed

+1601
-164
lines changed

30 files changed

+1601
-164
lines changed

src/components/AppContextDownload/index.less

Whitespace-only changes.

src/components/AppContextDownload/index.tsx

-80
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.app-state-modal {
2+
.app-state-table {
3+
.ant-table-selection-column {
4+
display: none;
5+
}
6+
7+
.operations-column {
8+
display: flex;
9+
justify-content: space-between;
10+
font-size: 1.25em;
11+
12+
.fa-trash {
13+
color: #ea2f5a;
14+
}
15+
16+
svg {
17+
cursor: pointer;
18+
}
19+
}
20+
}
21+
22+
.ant-modal-footer {
23+
button {
24+
margin-left: 8px;
25+
26+
> svg {
27+
margin-right: 10px;
28+
}
29+
}
30+
}
31+
32+
}
33+

src/components/AppContextDownload/index.spec.tsx src/components/AppStateManagement/index.spec.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import {
66

77
import { createReduxWrapper } from '../../utils/testUtils';
88

9-
import AppContextDownload from './index';
9+
import AppStateManagement from './index';
1010

11-
describe('<AppContextDownload />', () => {
11+
describe('<AppStateManagement />', () => {
1212

1313
it('can be rendered', () => {
1414
const {
1515
container
16-
} = render(<AppContextDownload />, {
16+
} = render(<AppStateManagement />, {
1717
wrapper: createReduxWrapper()
1818
});
1919

0 commit comments

Comments
 (0)