mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-08 06:47:56 +00:00
13 lines
No EOL
271 B
JavaScript
13 lines
No EOL
271 B
JavaScript
import React from 'react';
|
|
|
|
import System from '../Components/Private/System.js'
|
|
import Memberlist from '../Components/Private/Memberlist.js'
|
|
|
|
export default function Dash(props) {
|
|
|
|
return (<>
|
|
<System />
|
|
<Memberlist />
|
|
</>
|
|
);
|
|
} |