mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-06-19 20:43:14 +03:00
25 lines
340 B
JavaScript
25 lines
340 B
JavaScript
import React from 'react';
|
|
import JSONDiff from './JSONDiff';
|
|
|
|
const DiffTab = ({
|
|
delta,
|
|
styling,
|
|
base16Theme,
|
|
invertTheme,
|
|
labelRenderer,
|
|
isWideLayout
|
|
}) => (
|
|
<JSONDiff
|
|
{...{
|
|
delta,
|
|
styling,
|
|
base16Theme,
|
|
invertTheme,
|
|
labelRenderer,
|
|
isWideLayout
|
|
}}
|
|
/>
|
|
);
|
|
|
|
export default DiffTab;
|