mirror of
https://github.com/obsidian-desci/Obsidian-Desci.git
synced 2026-07-22 08:50:32 +00:00
8 lines
No EOL
201 B
TypeScript
8 lines
No EOL
201 B
TypeScript
import { useApp } from 'components/hooks/useApp';
|
|
|
|
export const ReactView = () => {
|
|
const { vault } = useApp();
|
|
|
|
console.log('hello react')
|
|
return (<h4>vault name: {vault.getName()}</h4>);
|
|
}; |