Skip to content

Instantly share code, notes, and snippets.

@abirrugal
abirrugal / Test.jsx
Created November 12, 2023 07:43 — forked from DemianKost/Test.jsx
Everything that you need to create a new Laravel application with React.js, Inertia.js and Vite.js
import React, { useState } from 'react';
const Test = () => {
return (
<h1>This is test component</h1>
)
}
export default Test