* Update Introduction * Update Camera step * Change link to expectations Co-authored-by: Josh Gomez <114548659+jgomez720@users.noreply.github.com> * Set outline for onboarding * Add Streaming step * Remove Units step * Add default kcl script * Add Code Editor step * Add Parametric Modeling step * Add Interactive Numbers step * Update bracket to use sqrt * Add Command K step * Assuage @jessfraz's code itchies * Add User Menu step * Add Project Menu step * Add Export step * Improve error page to actually show error * Update the sketch step * Add Future Work section * Bring back the bracket code on the final step * Set up the code to the bracket when starting onboarding * Fix missing import * Don't throw away users code if not empty * Prompt the user if they have content in their file --------- Co-authored-by: Josh Gomez <114548659+jgomez720@users.noreply.github.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			458 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			458 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { useRouteError } from 'react-router-dom'
 | |
| 
 | |
| export const ErrorPage = () => {
 | |
|   let error = useRouteError()
 | |
| 
 | |
|   console.error('error', error)
 | |
| 
 | |
|   return (
 | |
|     <div className="flex flex-col items-center justify-center h-screen">
 | |
|       <section className="max-w-full xl:max-w-4xl mx-auto">
 | |
|         <h1 className="text-4xl mb-8 font-bold">
 | |
|           An unexpected error occurred
 | |
|         </h1>
 | |
|         <p>{String(error)}</p>
 | |
|       </section>
 | |
|     </div>
 | |
|   )
 | |
| }
 |