mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
tidies
This commit is contained in:
parent
e0dcb9f01b
commit
256c822ebc
7 changed files with 10 additions and 5 deletions
|
|
@ -13,12 +13,11 @@ const App: React.FC = () => {
|
|||
theme="dark"
|
||||
mode="horizontal"
|
||||
style={{ lineHeight: '64px' }}
|
||||
>
|
||||
</Menu>
|
||||
/>
|
||||
</Header>
|
||||
<Content style={{ padding: '0 50px' }}>
|
||||
<div style={{ background: '#fff', padding: 24, minHeight: 280 }}>
|
||||
<AllListsTable></AllListsTable>
|
||||
<AllListsTable />
|
||||
</div>
|
||||
</Content>
|
||||
<Footer style={{ textAlign: 'center' }}>©2019 Collin M. Barrett</Footer>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import { Table } from 'antd';
|
||||
import * as React from "react";
|
||||
import { SubscribeButton } from '../../shared/';
|
||||
import { SubscribeButton } from '../../shared';
|
||||
import { nameof } from '../../utils';
|
||||
import './AllListsTable.css';
|
||||
import { List } from './List';
|
||||
|
|
|
|||
3
src/FilterLists.Web.V2/src/shared/buttons/index.ts
Normal file
3
src/FilterLists.Web.V2/src/shared/buttons/index.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import { SubscribeButton } from './subscribe';
|
||||
|
||||
export { SubscribeButton }
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
import { SubscribeButton } from './SubscribeButton';
|
||||
|
||||
export { SubscribeButton }
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
import { SubscribeButton } from './SubscribeButton';
|
||||
import { SubscribeButton } from './buttons';
|
||||
|
||||
export { SubscribeButton }
|
||||
Loading…
Reference in a new issue