I want to look at the example code in the atlaskit control examples (e.g. user picker). Unfortunately, I can’t look at this examples, because I’m not allowed to look at these examples.
So when you click on that ‘Source’ button, do you get:
import React from 'react';
import { ExampleWrapper } from '../example-helpers/ExampleWrapper';
import UserPicker from '@atlaskit/user-picker';
export default class Example extends React.Component<{}> {
render() {
return (
<ExampleWrapper>
{({ options, onInputChange }) => (
<UserPicker
fieldId="example"
options={options}
onChange={console.log}
onInputChange={onInputChange}
/>
)}
</ExampleWrapper>
);
}
}
to use the first example?
If it’s just Code Sandbox you’re worried about, I don’t think we can really make guarantees about it on packages marked with that ‘intended for internal Atlassian development’ flag.