beta/src/components/MDX/Challenges/index.tsx (8 lines of code) (raw):
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*/
import React from 'react';
export {Challenges} from './Challenges';
export function Hint({children}: {children: React.ReactNode}) {
return <div>{children}</div>;
}
export function Solution({children}: {children: React.ReactNode}) {
return <div>{children}</div>;
}