Note: I'm currently taking a break from this course to focus on my studies so I can finally graduate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import ReactTable, { ReactTableDefaults } from 'react-table'; | |
//https://github.com/tannerlinsley/react-table | |
//https://react-table.js.org/ | |
import 'react-table/react-table.css' | |
Object.assign(ReactTableDefaults, { | |
defaultPageSize: 10, | |
minRows: 3, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This is the HTML element that, when clicked, will cause the popup to appear. --> | |
<button id="open-popup">Subscribe to our mailing list</button> |