
* Require trailing commas * Add trailing commas * Add trailing commas in testUtils dir * Add trailing commas
22 lines
396 B
TypeScript
22 lines
396 B
TypeScript
import { MetadataProps } from "./Metadata";
|
|
|
|
export const props: MetadataProps = {
|
|
data: {
|
|
metadata: [
|
|
{
|
|
key: "key",
|
|
value: "value",
|
|
},
|
|
{
|
|
key: "key2",
|
|
value: '{\n "jsonValue": "some-value"\n}',
|
|
},
|
|
{
|
|
key: "key3",
|
|
value: "some-value",
|
|
},
|
|
],
|
|
privateMetadata: [],
|
|
},
|
|
onChange: () => undefined,
|
|
};
|