diff options
| author | Shpuld Shpludson <shp@cock.li> | 2019-01-07 17:26:47 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2019-01-07 17:26:47 +0000 |
| commit | 1fb9ceb59bf0dca5f755f5988f90bdd24a89dd53 (patch) | |
| tree | f243c98009130227fa06cfe41095a14cb985c39b /src/components/about/about.js | |
| parent | 2184334ad919fdcf167ac2f1657d508481ec431b (diff) | |
| parent | a60fc390a036078a857693193cfd18b9ee42954b (diff) | |
Merge branch 'feature/add-about-page-for-mobile' into 'develop'
Add instance information page for mobile
See merge request pleroma/pleroma-fe!451
Diffstat (limited to 'src/components/about/about.js')
| -rw-r--r-- | src/components/about/about.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/about/about.js b/src/components/about/about.js new file mode 100644 index 00000000..b4433b4e --- /dev/null +++ b/src/components/about/about.js @@ -0,0 +1,13 @@ +import InstanceSpecificPanel from '../instance_specific_panel/instance_specific_panel.vue' +import FeaturesPanel from '../features_panel/features_panel.vue' +import TermsOfServicePanel from '../terms_of_service_panel/terms_of_service_panel.vue' + +const About = { + components: { + InstanceSpecificPanel, + FeaturesPanel, + TermsOfServicePanel + } +} + +export default About |
