'use strict'; var React = require('react'); var About = React.createClass({ render: function () { return (

About

This application allows you to find duplicates in your Spotify playlists. For the moment, it does not offer to remove them for you.

The app requests access to :

Source code

This project is open source. You can view the source code on the GitHub repository.

License

The source code is released under the GNU GPLv3 License. This means you can use it, distribute it, modify it under the following conditions :

A copy of this license is included in the source code repository (see LICENSE file).

Contribute

If you want to contribute to this project, feel free to open an issue or propose a pull-request.

); } }); module.exports = About;