Skip to content

Instantly share code, notes, and snippets.

@techomoro
Created November 13, 2021 09:01
Embed
What would you like to do?
import React from "react";
import InputComponent from "../components/InputComponent";
import LengthComponent from "../components/LengthComponent";
export default function Main() {
return (
<div className="main">
<InputComponent />
<LengthComponent />
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment