This commit is contained in:
Collin M. Barrett 2019-08-06 13:19:25 -05:00
parent e0dcb9f01b
commit 256c822ebc
7 changed files with 10 additions and 5 deletions

View file

@ -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>

View file

@ -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';

View file

@ -0,0 +1,3 @@
import { SubscribeButton } from './subscribe';
export { SubscribeButton }

View file

@ -0,0 +1,3 @@
import { SubscribeButton } from './SubscribeButton';
export { SubscribeButton }

View file

@ -1,3 +1,3 @@
import { SubscribeButton } from './SubscribeButton';
import { SubscribeButton } from './buttons';
export { SubscribeButton }