oysterprotocol/webinterface

View on GitHub
src/components/download-complete/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";
import { connect } from "react-redux";

import DownloadCompleteSlide from "./download-complete-slide";

const mapStateToProps = state => ({});
const mapDispatchToProps = dispatch => ({});

const DownloadComplete = () => <DownloadCompleteSlide />;

export default connect(mapStateToProps, mapDispatchToProps)(DownloadComplete);