- Notifications
You must be signed in to change notification settings - Fork2
A React component is provided that allows you to programmatically generate codesandbox projects from code samples on the fly.
License
uiwjs/react-codesandbox
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A React component is provided that allows you to programmatically generatecodesandbox projects from code samples on the fly.
npm install @uiw/react-codesandbox --save
importReactfrom'react';importCodeSandboxfrom'@uiw/react-codesandbox';constcode=`import React from 'react';import ReactDOM from 'react-dom';const App = ( <h1> Hello, {formatName(user)}! </h1>);ReactDOM.render( <App />, document.getElementById('root'));`;functionDemo(){return(<CodeSandboxfiles={{"package.json":{content:{dependencies:{react:"latest","react-dom":"latest"}}},"index.js":{content:code},"index.html":{content:`<div></div>`}}}> Open in CodeSandbox</CodeSandbox>)}
typeCodeSandboxProps=React.FormHTMLAttributes<HTMLFormElement>&{/** * Whether we should redirect to the embed instead of the editor. */embed?:boolean;/** * The query that will be used in the redirect url. `embed` must be equal to `true`, `embed=true`. * [CodeSandbox Embed Options](https://codesandbox.io/docs/embedding#embed-options) *@example `view=preview&runonclick=1` */query?:string;/** * Instead of redirecting we will send a JSON reponse with `{"sandbox_id": sandboxId}`. */json?:boolean;/** * Parameters used to define how the sandbox should be created. */files?:Record<string,{content?:string|Record<string,any>;isBinary?:boolean;}>};
Runs the project in development mode.
# Step 1, run first, listen to the component compile and output the .js file# listen for compilation output type .d.ts filenpm run watch# Step 2, development mode, listen to compile preview website instancenpm run start
production
Builds the app for production to the build folder.
npm run build
The build is minified and the filenames include the hashes.Your app is ready to be deployed!
As always, thanks to our amazing contributors!
Made withgithub-action-contributors.
Licensed under the MIT License.
About
A React component is provided that allows you to programmatically generate codesandbox projects from code samples on the fly.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors3
Uh oh!
There was an error while loading.Please reload this page.