20 lines
459 B
TypeScript
20 lines
459 B
TypeScript
import React from "react";
|
|
import { useDispatch } from 'react-redux';
|
|
import { Provider } from 'react-redux';
|
|
import manifest from '../manifest';
|
|
import usePlugin from '../utils/usePlugin';
|
|
|
|
const RootComponent: React.FC = () => {
|
|
const dispatch = useDispatch();
|
|
const plugin = usePlugin();
|
|
|
|
return (
|
|
<div>
|
|
{/* Add your root component content here */}
|
|
<p>Template Plugin Root Component</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default RootComponent
|