({
children,
...data
})
| 17 | >; |
| 18 | |
| 19 | export const MatterProvider: FC<MatterProviderProps> = ({ |
| 20 | children, |
| 21 | ...data |
| 22 | }) => { |
| 23 | const os = useDetectOS(); |
| 24 | |
| 25 | return ( |
| 26 | <MatterContext value={assignClientContext({ ...os, ...data })}> |
| 27 | {children} |
| 28 | </MatterContext> |
| 29 | ); |
| 30 | }; |
nothing calls this directly
no test coverage detected