import React, {Component} from 'react'; import {ScrollView, View} from 'react-native'; import MyText from './mytext.js'; import MyLink from './mylink.js'; import Section from './section.js'; export default class About extends Component { constructor(props) { super(props); } render() { return (
Exact Resistor Calculator v1.0.0 © 2017 Tanner Collin
This app was written by Tanner Collin and based off a spreadsheet he created in university to help him finish electronics labs faster.
This app is free and open-source software licensed under the MIT License. That means you have the right to study, change, and distribute the software and source code to anyone and for any purpose.
You can find the source code and report bugs here: https://github.com/tannercollin/exact-resistor-calculator
Instead of donating to me, please give to the Electronic Frontier Foundation.
Thanks to all the devs behind Node.js, React, React Native, and Redux. Thanks to K&E Imaging for providing the photography. All photographs are licensed CC-BY. Thanks to Jakub Jankiewicz for the circuit image. It and my derivatives are licensed CC-BY-SA.
); } }