diff --git a/src/views/NoduleList/NoduleList.js b/src/views/NoduleList/NoduleList.js
index b819331..4882c45 100644
--- a/src/views/NoduleList/NoduleList.js
+++ b/src/views/NoduleList/NoduleList.js
@@ -2,7 +2,7 @@ import React, { Component } from 'react'
import { Card, Icon, CardContent } from 'semantic-ui-react'
import './NoduleList.css'
-import Nodule from '../../Collections/Nodules'
+import Nodule from '../../Models/Nodules'
import NoduleListController from '../../Controllers/NoduleListController'
class NoduleList extends Component {
@@ -28,12 +28,17 @@ class NoduleList extends Component {
{ n.label }
{`${n.tables.length} tables`}
-
+ { this.controller.deleteNodule(n.id) }}
- style={{ cursor: 'pointer' }}
- >
- Delete
+ style={{ cursor: 'pointer' }}>
+ Delete
+
+ { this.controller.logExportById(n.id) }}
+ style={{ cursor: 'pointer' }}>
+ View
+
)