Skip to main content

React

Focus Tracker can be installed with your choice of package manager. Then use the components you need.

shell npm install @michaeldrotar/react-focus-tracker --save

import { FocusTrackerRegistration } from '@michaeldrotar/react-focus-tracker/FocusTrackerRegistration'
import { UserFocusTracker } from '@michaeldrotar/react-focus-tracker/UserFocusTracker'

function App() {
return (
<FocusTrackerRegistration>
<body />
</FocusTrackerRegistration>
<UserFocusTracker />
)
}