/* * This file is part of Flarum. * * (c) Toby Zerner * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import Modal from 'flarum/components/Modal'; export default class AddExtensionModal extends Modal { className() { return 'AddExtensionModal Modal--small'; } title() { return 'Add Extension'; } content() { return (

One day in the not-too-distant future, this dialog will allow you to add an extension to your forum with ease. We're building an ecosystem as we speak!

In the meantime, if you manage to get your hands on a new extension, simply drop it in your forum's extensions directory.

If you're a developer, you can read the docs and have a go at building your own.

); } }