You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
``Hello, I am currently migrating from a vue app into a react app, and therefore i want to start adding some react component inside react.
I am trying To add a test react compoent to my Home.vue:
<template class='body-home'>
<test />
</template>
import test from "./test"
@Component({
components: { EvensmallerBriefCardLong, BriefCard, CaseStudyBlock, 'Test':Test },
})
export default class Home extends Vue {
//More code on here
}
In my Test.js
import React from 'react'
const Test = () => {
return (
<div>test 1234</div>
);
}
export default Test;
.babelrc
Console errors:
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
``Hello, I am currently migrating from a vue app into a react app, and therefore i want to start adding some react component inside react.
I am trying To add a test react compoent to my Home.vue:
In my Test.js
.babelrc
Console errors:
The text was updated successfully, but these errors were encountered: