Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -1440,6 +1440,15 @@
"contributions": [
"code"
]
},
{
"login": "22PoojaGaur",
"name": "Pooja Gaur",
"avatar_url": "https://avatars2.githubusercontent.com/u/43316760?v=4",
"profile": "https://github.com/22PoojaGaur",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,12 +240,12 @@ Thanks goes to these wonderful people
<td align="center"><a href="https://github.com/milap1296"><img src="https://avatars2.githubusercontent.com/u/19545730?v=4" width="100px;" alt="milap1296"/><br /><sub><b>milap1296</b></sub></a><br /><a href="https://github.com/codesandbox/codesandbox-client/commits?author=milap1296" title="Code">💻</a></td>
<td align="center"><a href="http://yevhenorlov.com"><img src="https://avatars2.githubusercontent.com/u/17388747?v=4" width="100px;" alt="yevhen orlov"/><br /><sub><b>yevhen orlov</b></sub></a><br /><a href="https://github.com/codesandbox/codesandbox-client/commits?author=yevhenorlov" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/NileshPatel17"><img src="https://avatars2.githubusercontent.com/u/27020381?v=4" width="100px;" alt="Nilesh Patel"/><br /><sub><b>Nilesh Patel</b></sub></a><br /><a href="https://github.com/codesandbox/codesandbox-client/commits?author=NileshPatel17" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/22PoojaGaur"><img src="https://avatars2.githubusercontent.com/u/43316760?v=4" width="100px;" alt="Pooja Gaur"/><br /><sub><b>Pooja Gaur</b></sub></a><br /><a href="https://github.com/codesandbox/codesandbox-client/commits?author=22PoojaGaur" title="Code">💻</a></td>
</tr>
</table>

<!-- markdownlint-enable -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

## Backers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,57 +7,17 @@ import {
PreferenceContainer,
} from '../elements';

// const windowWithOvermind: {
// useOvermind?: (val?: boolean) => 'true' | null;
// } = window as any;
export const Experiments: React.FunctionComponent = () => (
<div>
<Title>Experiments</Title>

export function Experiments() {
// const bindValue = name => ({
// value: store.preferences.settings[name],
// setValue: value =>
// signals.preferences.settingChanged({
// name,
// value,
// }),
// });

// const [usingOvermind, setUsingOvermind] = React.useState(
// typeof windowWithOvermind.useOvermind !== 'undefined' &&
// windowWithOvermind.useOvermind() === 'true'
// );

return (
<div>
<Title>Experiments</Title>

<SubContainer>
<PreferenceContainer>
<SubDescription>
There are no experiments running at the moment. Stay tuned for new
experiments!
</SubDescription>
{/*
<PaddedPreference
title="Use Overmind"
type="boolean"
value={usingOvermind}
setValue={val => {
windowWithOvermind.useOvermind(val);
setUsingOvermind(val);
track('Overmind Enabled', {
enabled: val,
});
}}
/>
<SubDescription>
Use Overmind (an evolution of our current state management) as the
state management
</SubDescription>
*/}
</PreferenceContainer>
</SubContainer>
</div>
);
}

// export default inject('store', 'signals')(observer(Experiments));
<SubContainer>
<PreferenceContainer>
<SubDescription>
There are no experiments running at the moment. Stay tuned for new
experiments!
</SubDescription>
</PreferenceContainer>
</SubContainer>
</div>
);