mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-08-02 21:35:44 +00:00
27 lines
580 B
TypeScript
27 lines
580 B
TypeScript
// Copyright 2017-2026 @pezkuwi/app-fellowship authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import React from 'react';
|
|
|
|
import Main from '@pezkuwi/app-ranked/App';
|
|
|
|
export { default as useCounter } from './useCounter.js';
|
|
|
|
interface Props {
|
|
basePath: string;
|
|
className?: string;
|
|
}
|
|
|
|
function App ({ basePath, className }: Props): React.ReactElement<Props> {
|
|
return (
|
|
<Main
|
|
basePath={basePath}
|
|
className={className}
|
|
palletColl='fellowshipCollective'
|
|
palletPoll='fellowshipReferenda'
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default React.memo(App);
|